int i = 9; int *j = &i; int* l = j + 1; int **a=&j; int **b=&l; printf("%u\\n",a); printf("%u\\n",b); printf("%d\\n",a-b);