home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
microcrn
/
issue_40.arc
/
C-REVIEW.ARC
/
DISPLAY.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1987-09-23
|
316 b
|
17 lines
/*
Program: Bench3
Version: 1.00
Date: September 10, 1987
General C Benchmark test #3
*/
#include <stdio.h>
main()
{
int i;
for (i = 0; i < 200; ++i)
printf("#%3d -- This is a test string from the program %s. %6.2f\n",i,"Display",1234.5678);
}