home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day06 / whilest.c < prev   
C/C++ Source or Header  |  2002-04-16  |  274b  |  21 lines

  1. /* Demonstrates a simple while statement */
  2.  
  3. #include <stdio.h>
  4.  
  5. int count;
  6.  
  7. int main( void )
  8. {
  9.     /* Print the numbers 1 through 20 */
  10.  
  11.    count = 1;
  12.  
  13.     while (count <= 20)
  14.     {
  15.         printf("%d\n", count);
  16.         count++;
  17.     }
  18.     return 0;
  19. }
  20.  
  21.