📜  操作数类型不兼容(“char”和“const char *”) - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:18.629000             🧑  作者: Mango

代码示例1
char userInput_Text[3];

if (userInput_Text[1] == 'y') { // <-- Single quotes here.
    // Do stuff.
}