home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
microcrn
/
c_bench.arc
/
LOOPS.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-09-23
|
266 b
|
17 lines
/*
Program: CallOver (Call Overhead)
Version: 1.00
Date: September 10, 1987
Tests fucntion call overhead for C Compilers
*/
main()
{
unsigned i;
for (i = 0; i < 50000; ++i);
printf("\n%d i\n",i);
}