1.2.4 Booleans
bool b1 = true;
bool b2;
b2 = false;cout << b1 << endl; // true = 1Logical Operators
Operator
Description
Try This Example
Last updated
bool b1 = true;
bool b2;
b2 = false;cout << b1 << endl; // true = 1Last updated