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