最赞回答 / onemoo
const int const *p 这个声明是错误的,这样两个const都是修饰int的,重复了。选项A中:a是一个const int变量,p是一个普通int指针,不能指向const变量。所以A是错的。
2015-08-30