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

  1. #include "timer1.h"
  2.  
  3. # define NROW 10
  4. # define NCOLUMN 10
  5.  
  6. int a[NROW][NCOLUMN], i = 0, j = 0;
  7.  
  8. DO_STMT("expr = 5 * expr")    a[i+5][j+5] = 5 * a[i+5][j+5]    OD
  9.  
  10. DO_STMT("expr *= 5")        a[i+5][j+5] *= 5                OD
  11.  
  12. }
  13.