我有一個節目約2-d陣列請解釋差
基ADRESS是
8678
#include<stdio.h>
#include<conio.h>
main()
{
int arr[3][3]={
{83,8,43},
{73,45,6},
{34,67,9}
};
printf("%d ",&arr+1); //points to 8696
printf("%d ",arr+1); //points to 8684
return 0;
}
是什麼
arr+1
和&arr+1
之間的差異?
的下一個數組的地址,我從你的答案學到了很多。謝謝。 – 2012-08-08 04:57:13
使用'%p',您需要將指針轉換爲'void *'。 – 2012-08-08 05:29:41