What does the value on the subtraction of one double pointer from another double pointer signifies?

前端 未结 0 1399
鱼传尺愫
鱼传尺愫 2021-01-22 14:44
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);


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题