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

2024-11-17 17:52:19
推荐回答(1个)
回答1:

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

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