int main() { int a[3]={1,10,20}; printf("%u %u %u \n" ,&a,a,&a[0]); return 0; }
这将为所有三个打印相同的值.我明白a和&a [0]是一样的但是怎么也是一样的?
c
c ×1