home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / struct-1.0.lha / Struct-1.0 / SpeedTests / Test2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-22  |  224 b   |  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.