數組名加取地址符

看了一下這裏https://blog.csdn.net/wangkeyen/article/details/50650000 自己做了一下驗證: int main() { int a[5] = { 5, 2, 3, 3, 4 }; cout << sizeof(a) << endl; // 20 cout << sizeof(*a) << endl; // 4 cout << s
相關文章
相關標籤/搜索