Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Pradeep Maurya
<> 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.