十六进制数相等的推断
请问例如以下程序的输出是神马?
#include <iostream>
#include <string>
using namespace std;
int main (int, char *[])
{
char s[1]={0};
s[0] = 0xfe;
if (s[0] == 0xfe)
{
cout<<"=="<<endl;
}
else
{
cout<<"!="<<endl;
}
return 0;
}#include <ios