次のコードがあります。
#include <iostream>
using namespace std;
int main()
{
char fg;
cin>>fg;
char x[20];
x[0]='0';
if(fg=x[0])
{
cout<<"It's true!"<<endl;
return true;
}
cout<<"It's false!"<<endl;
return false;
}
どんな入力をしても、true
常に返されます。私の構文はオフですか?どんな助けでも大歓迎です。