The use of braces to enclose a set of individual statements creates a single block of statements, which may be used anywhere in a C program in place of a single statement.
查看答案
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