是的,C语言中的字符型常量可以用于switch语句的case标签。例如:
char c = 'A';
switch(c) {
case 'A':
printf("The character is A\n");
break;
case 'B':
printf("The character is B\n");
break;
default:
printf("Character not found\n");
break;
}
在这个例子中,如果变量c的值为’A’,则程序会输出"The character is A"。如果c的值为’B’,则程序会输出"The character is B"。如果c的值既不是’A’也不是’B’,则程序会输出"Character not found"。因此,字符型常量可以用于switch语句的case标签。