void main() { int i; clrscr(); for(i=1;i<=100;i++) { printf("\n %d",i); } getch(); } output : 1 2 3 4 5 . . . 100