home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 357_01 / cstar1.exe / STAR.TST < prev    next >
Text File  |  1991-11-15  |  237b  |  18 lines

  1. assign() {
  2.     int x,y,z,w;
  3.     x = 5;
  4.     y = 10;
  5.     z = 15;
  6.     w = -5;
  7.  
  8.     int *a, *b, *c, *d;
  9.     
  10.     *a += *b;
  11.     **a += *b;
  12.     **a *= ***b;
  13.     x = *(b + 5);
  14.     x = *(b + x);
  15.     *(b + x + 5) = *(a + x + 5) / *(c + z + 7);
  16.     *a = sizeof(long *);
  17. }
  18.