在我的系统中,未定义指针的默认值为 0x00000000。
void Demo()
{
char cData;
char *pExamplePtr;
char pExampleArray[4];
&cData <--- Address is 0x12345678
pExamplePtr <--- Value of pointer is 0x00000000
pExampleArray[0] <--- Address is ???
}
pExampleArray 的默认地址是什么?它是 0x00000000 还是有像 cData 这样的有效地址?