Select the valid relational operators supported in C.
A. <
B. >
C. ==
D. !=
E. >=
F. <=
G. =
H. =!
I. =>
J. =<
查看答案
Determine the value of the relational expression: 3 < 4
A. 0
B. 1
Determine the value of the relational expression: 3.0 > -1.0
A. 0
B. 1
Determine the value of the relational expression: (1.0 >= 1.0) && (3 > 1)
A. 0
B. 1
Determine the value of the relational expression: (1 <= 1) && ('A' < 'B') || (-1 > 3)
A. 0
B. 1