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
In C, character data cannot be compared using relational operators.
The && operator has a higher precedence than the || operator.
A. True
B. False