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
x == 5 || y != 3
! ( x > 14 )
! ( x > 9 && y != 23 )
x <= 1 && y == 6 || z < 4
c >= 'a' && c <= 'z'
c >= 'A' || c <= 'Z'
c != d && c != '\n'
5 && y != 8 || 0
x >= y >= z