c语言编写时出现: error C2143: syntax error : missing ✀;✀ before ✀type✀ 执行 cl.exe 时出错.

2024年11月17日 17:52
有1个网友回答
网友(1):

int toupper(int ch);
应该改为
ch = toupper(ch);

另外
scanf("%c\n", ch);
应改为
scanf("%c\n", &ch);