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

  1. #include "timer1.h"
  2.  
  3. #define ASIZE 100
  4.  
  5. int a[ASIZE];
  6. register int i;
  7.     
  8. DO_STMT("Register indexed looping")
  9.     for (i = 0; i < ASIZE; i++)
  10.         a[i] = 0;
  11. OD
  12. }
  13.