可能重复:
切换条件下的默认情况
我可以编译这段代码而不会遇到任何错误。我认为应该有一个错误,因为assadfsd
在 switch 语句中。
为什么编译不会失败?
#include <stdio.h>
int main(void)
{
int choice =0;
scanf("%d",&choice);
switch(choice)
{
case 1 :
printf("Case 1\n");
break;
assadfsd :
printf("Error\n");
}
return 0;
}