home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 161_01 / harness1.c < prev    next >
C/C++ Source or Header  |  1985-08-29  |  170b  |  10 lines

  1. /* harness1 - execute repetitive long division */
  2. #define LOOPCNT 10000
  3. main()
  4.     {
  5.     long a, b = 255, c = 255, i;
  6.  
  7.     for (i = 1; i <= LOOPCNT; ++i)
  8.         a = b / c;
  9.     }
  10.