home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / c_tutor.lha / C_Tutor / WHILE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-02-05  |  185 b   |  13 lines

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