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

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