Question

In C, the condition 4 > y > 1
(a) evaluates correctly
(b) does not evaluate correctly and should be replaced by (4 > y && y > 1)
(c) does not evaluate correctly and should be replaced by (4 > y & y > 1)
(d) does not evaluate correctly and should be replaced by (4 > y || y > 1)

Answer

This answer is hidden. It contains 3 characters.