cout << "Value of x <= y is: " << x <= y;
What will be an ideal response?
Error: The precedence of the << operator is higher than that of <=, which causes the
statement to be evaluated improperly and also causes a compiler error.
Correction: Place parentheses around the expression x <= y.
Computer Science & Information Technology