100.0110.B. What would be printed out by the statement:
cout << (a > b) && (e > d);
Why??
(a > b) && (e > d) = (1 > 2) && ( 5 > 4) = (FALSE) && (TRUE) = FALSE (=0)