最贊回答 / onemoo
const int const *p 這個聲明是錯誤的,這樣兩個const都是修飾int的,重復了。選項A中:a是一個const int變量,p是一個普通int指針,不能指向const變量。所以A是錯的。
2015-08-30