数组首地址的理解

int a[4]={1,2,3,4};

&a为数组的首地址,a为数组的首元素的首地址

&a+1为加一整个数组a的大小

a+1为加数组a一位的大小

原文地址:https://www.cnblogs.com/zzdbullet/p/9323470.html