A ____ statement is one or more statements contained between braces.
A. conditional
B. nested
C. flow
D. compound
查看答案
The && operator has a higher precedence than the || operator.
The ! operator is an unary operator.
The following statement prints “You lose!” on the screen; int num = -1; if (num) printf("Bingo!"); else printf("You lose!");
A. True
B. False
The expression: (6 * 3 == 36 / 2) && (13 < 3 * 3 + 4) || !(6 - 2 < 5) evaluates to 1.
A. True
B. False