C Relational and Logical Operators

Operator Description
> Yields TRUE if left object is greater than right object.
>= Yields TRUE if left object is greater than or equal to right object.
< Yields TRUE if left object is less than right object.
<= Yields TRUE if left object is less than or equal to right object.
== Yields TRUE if left object is equal to right object.
!= Yields TRUE if left object is not equal to right object.
! Logical negation operator.
&& Logical AND operator.
|| Logical OR operator.