1.在C语言中,const 关键字并不真正表示常量
例如:
#include <stdio.h>
int main()
{
int const c = 2;
int a = 0;
switch(a)
{
case 1:
break;
case c:
break;
default:
break;
}
return 0;
}
这里会报编译错误
[Error] case label does not reduce to an integer constant