home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / microcrn / issue_40.arc / C-REVIEW.ARC / DISPLAY.C < prev    next >
C/C++ Source or Header  |  1987-09-23  |  316b  |  17 lines

  1. /*
  2.      Program: Bench3
  3.      Version: 1.00
  4.      Date:    September 10, 1987
  5.  
  6.      General C Benchmark test #3
  7. */
  8. #include <stdio.h>
  9.  
  10. main()
  11.      {
  12.      int i;
  13.  
  14.      for (i = 0; i < 200; ++i)
  15.           printf("#%3d -- This is a test string from the program %s. %6.2f\n",i,"Display",1234.5678);
  16.      }
  17.