Tagged Questions
1
vote
5answers
169 views
What are the valid values of the expression (uninitialized_bool ? 1 : 2)?
What is the set of valid outputs for the following, according to the standard?
bool x;
cout << (x ? 1 : 2);
edit: unknown(google) has got it. In gcc my code was crashing because of ...