home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_06 / 1006088a < prev    next >
Text File  |  1991-09-09  |  200b  |  16 lines

  1. /* LISTING 1 */
  2.  
  3. extern int g;
  4.  
  5. f1() 
  6. {
  7.     int i;
  8.     int *p, *q, *r;
  9.     int a[200], b[200] ,c[200];
  10.  
  11.     p = a; q = b; r = c;
  12.  
  13.     for( i=0; i<g; ++i )
  14.         *p++ = *q++ / *r++;
  15. }
  16.