Back To C Loops Index
//program to print numbers from 0 to 9 using while statement #include
#include
void main() { int i; i=0; clrscr(); while(i<10) { printf("%d\n",i); i++; } getch(); }