home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / lang / struct / speedtests / test1.c < prev    next >
C/C++ Source or Header  |  1993-08-21  |  210b  |  16 lines

  1. ;/* Execute me to compile.  Run time: aprox. 13 seconds.
  2. sc NOSTKCHK NOSTDIO Test1.c
  3. slink Test1.o to Test1
  4. quit
  5. */
  6.  
  7. void __saveds main()
  8. {
  9.   long z, a = 0;
  10.  
  11.   for(z = 1;z < 16000000;z++)
  12.   {
  13.     a += 7;
  14.   }
  15. }
  16.