我这样做只是为了学习目的。但是在这样做的时候我发现了一个问题。这里 x 是常量整数,编译器仍然给我错误。我正在使用 gcc 编译器。请解释这个错误的原因是什么以及如何避免它。
#include<stdio.h>
int main()
{
int const x = 10;
int y = 20;
switch(y)
{
case x: //error: case label does not reduce to an integer constant
printf("value of x: %d\n",x);
break;
}
}