home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list6_3.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  280b  |  19 lines

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