/* test111.c   L. Stewart February 15, 1982  5:54 PM */
/* pointer add and subtract */

int j;

main()
  {
  int *ip, x;
  ip -= 1;
  ip += 1;
  ip -= x;
  ip += x;
  ip -= j;
  ip += j;
  };