Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<stdio.h> #include<conio.h> void main() { int i=1; clrscr(); start: printf("%3d\n",i); i++; if(i<=10) goto start; getch(); }
0 Comments