0
If a Boolean value is assigned to an integer, true becomes 1 and false becomes 0. If an integer value is assigned to a Boolean,
explai it please
1 Resposta
+ 5
bool a = 1;
// cout << a; will output 1
is the same as:
bool b = true;
// cout << b; will output 1