Back To C Loops Index
//program to demonstrate do while example 2, prints 11 on the output screen #include
#include
void main() { int i; i=11; clrscr(); do { printf("%d\n",i); i++; }while(i<=10); getch(); }