home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / languages / c / c_tutor / GENSCR / DOWHILE_C < prev    next >
Text File  |  1987-11-21  |  248b  |  14 lines

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