以下代码的输出是什么?
#include
int main()
{
const int x;
x = 10;
printf("%d", x);
return 0;
}
(A)编译器错误
(B) 10
(C) 0
(D)运行时错误答案: (A)
说明:除了初始化时,不能更改’const’变量的值。
这个问题的测验
如果您在以上帖子中发现任何错误,请在下面发表评论