home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap04 / while.c < prev   
Encoding:
C/C++ Source or Header  |  1988-04-05  |  251 b   |  17 lines

  1.  
  2. /* WHILE.C -- a simple while loop */
  3.  
  4. main()
  5. {
  6.     int count = 1;
  7.  
  8.     while (count < 11)  /* loop condition */
  9.         /* body of loop */
  10.         {
  11.         printf("%d\n", count);
  12.         count++ ;
  13.         }
  14.     printf("Done!\n");
  15. }
  16.  
  17.