8
如何正确比较字符串?
我试图获得一个程序,让用户输入单词或字符,存储它,然后打印它,直到用户再次键入它,退出程序。我的代码如下所示: #include <stdio.h> int main() { char input[40]; char check[40]; int i=0; printf("Hello!\nPlease enter a word or character:\n"); gets(input); printf("I will now repeat this until you type it back to me.\n"); while (check != input) { printf("%s\n", input); gets(check); } printf("Good bye!"); return 0; } 问题是,即使用户输入(检查)与原始输入(输入)匹配,我仍会继续打印输入字符串。我是否错误地比较了两者?