void main() { int i; i=1; clrcsr(); while(i<=10) { printf("\n %d",i); i++; } getch(); } output : 1 2 3 4 5 6 7 8 9 10