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

  1. ;/* Execute me to compile.
  2. sc NOSTKCHK NOSTDIO Test2.c
  3. slink Test2.o to Test2
  4. quit
  5. */
  6.  
  7. void __saveds main()
  8. {
  9.   long z, a = 0, y;
  10.  
  11.   for(y = 2000;y != 0;y--)
  12.   {
  13.     for(z = 20000;z != 0;z--)
  14.     {
  15.       a += 7;
  16.     }
  17.   }
  18. }
  19.