home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_tutor / dowhile.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  165b  |  13 lines

  1. /* This is an example of a do-while loop */
  2.  
  3. main()
  4. {
  5. int i;
  6.  
  7.    i = 0;
  8.    do {
  9.       printf("The value of i is now %d\n",i);
  10.       i = i + 1;
  11.    } while (i < 5);
  12. }
  13.