我有以下代码:
#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
总是返回。我的语法关闭了吗?任何帮助,将不胜感激。