home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
dev
/
lang
/
struct
/
speedtests
/
test1.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-21
|
210b
|
16 lines
;/* Execute me to compile. Run time: aprox. 13 seconds.
sc NOSTKCHK NOSTDIO Test1.c
slink Test1.o to Test1
quit
*/
void __saveds main()
{
long z, a = 0;
for(z = 1;z < 16000000;z++)
{
a += 7;
}
}