Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
4 years ago
C Programming
<> is incorrect. While this operator is correctly interpreted as "not equal to" in writing conditional statements, it is not the proper operator to be used in C programming. Instead, the
operator != must be used to indicate "not equal to" condition.
Sanisha Maharjan
Jan 20, 2022