main ()
 {
  int a, b, c, d;
  int *p, *q, *r, *s;

  p = &a;
  q = &b;
  r = &c;

  s = r;
  d = *p;
 }
