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

  1. ;/* Execute me to compile.
  2. sc NOSTKCHK NOSTDIO Test8.c
  3. slink Test8.o to Test8
  4. quit
  5. */
  6.  
  7. void __saveds main()
  8. {
  9.   long z = 0, a = 0, b = 0;
  10.  
  11.   for (a = 1;a < 20;a++)
  12.   {
  13.     for (b = 1;b < 500000;b++)
  14.     {
  15.       z = *((char *)(a + b + 120));
  16.     }
  17.   }
  18. }
  19.