Why can I write:
bool a = sizeof(unsigned int) == sizeof(int);
cout << "(taille unsigned integer = integer) ? " << a;
But this:
cout << "(taille unsigned integer = integer) ? " << sizeof(unsigned int) == sizeof(int);
produces a compilation error?
Invalid operands to binary expression ('std::basic_ostream<char>::__ostream_type' (aka 'basic_ostream<char, std::char_traits<char>>') and 'unsigned long')