3)编写程序 验证下列哪两个是等同的int b;1.const int a = &b;2.int * const a = &b;3.const int const a = &b;4.int const* const a = &b;
四个都不同,你的题目应该是出错了。或者你抄错了。