代碼:
main(){
int a = 3 ;
int b = 4 ;
int *p1 ;
int *p2 ;
p1 = &a ;
p2 = &b ;
printf("%d\n",p1);
printf("%d\n",p2);
int c ;
c = p1 - p2 ;
printf("%d\n",c);
}
運行結果:
2293304
2293300
1
Process exited after 0.1434 seconds with return value 2
請按任意鍵繼續. . .
問題:既然p1 = 2293304 . p2 = 2293300 .
c = p1 - p2 ; 那麼c就應該是 4 啊。為什麼結果是1 呢?這個1表示什麼意思?
是p1和p2所指地址的單位差值,在這裡是