home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc / qc25 / while.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-15  |  195 b   |  15 lines

  1. /* WHILE.C: Demonstrate while loop. */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.    int test = 10;
  8.  
  9.    while( test > 0 )
  10.    {
  11.       printf( "test = %d\n", test );
  12.       test = test - 2;
  13.    }
  14. }
  15.