不明白的是arr+1既然已經(jīng)是第二行的地址,*地址 應該是個值,為什么它還是地址?#include <stdio.h>
void main( ) {
int arr[3][4] = {
{1,2,3,4},
{5,6,7,8},
{9,10,11,12}
};
printf("%p---%p",arr+1,*(arr+1));
}
- 1 回答
- 0 關(guān)注
- 587 瀏覽
添加回答
舉報
0/150
提交
取消