CS18
February 7, 1996
Assuming the following values:
int x = 11; int y = 6; int z = 1; char c = 'k'; char d = 'y';fully parenthesize and evaluate the following expressions. Assume that the ASCII representation is used (you may need to refer to Appendix C in Uckan).
((x > 9) && (y != 3)) -> 1
((x == 5) || (y != 3)) -> 1
!((x > 14)) -> 1
!(((x > 9) && (y != 23))) -> 0
(((x <= 1) && (y == 6)) || (z < 4)) -> 1
((c >= 'a') && (c <= 'z')) -> 1
((c >= 'A') || (c <= 'Z')) -> 1
((c != d)) && (c != '\n')) -> 1
((5 && (y != 8)) || 0) -> 1
((x >= y) >= z) -> 1