ユーザーが単語または文字を入力して保存し、ユーザーが再度入力してプログラムを終了するまで印刷するプログラムを取得しようとしています。私のコードは次のようになります。
#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); /* obsolete function: do not use!! */
printf("I will now repeat this until you type it back to me.\n");
while (check != input)
{
printf("%s\n", input);
gets(check); /* obsolete function: do not use!! */
}
printf("Good bye!");
return 0;
}
問題は、ユーザーによる入力 (チェック) が元の (入力) と一致している場合でも、入力文字列の出力を取得し続けることです。2つを間違って比較していますか?