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

  1. ;/* Execute me to compile.
  2. sc NOSTKCHK NOSTDIO Test7.c
  3. slink Test7.o to Test7
  4. quit
  5. */
  6.  
  7. void __saveds main()
  8. {
  9.   long z = 0, a = 0, b = 0;
  10.  
  11.   for (z = 1;z < 8000000;z++)
  12.   {
  13.     if (300-97+b > 300-97+a) a += 1;
  14.     else b += 1;
  15.   }
  16. }
  17.