main() { int a[10], b[10]; int *p, *q; p = &a[2]; q = &a[7]; printf("%d %d %d\n",q,p,q-p); q = &b[5]; printf("%d %d %d\n",q,p,q-p); }