What are relational operators. List all the relational operators in C
Answers
Answered by
0
Answer:
Relational Operators in C
Operator
Description
Example
==
Checks if the values of two operands are equal or not. If yes, then the condition becomes true.
(A == B) is not true.
!=
Checks if the values of two operands are equal or not. If the values are not equal, then the condition becomes true.
(A != B) is true.
Answered by
0
Answer:
Realational operates
Explanation:
In c a=b not true
Similar questions