<<< Relational Operators | Index | Operator Associativity >>> |
Decision making:
(x == y) is x equal to y?
(x != y) is x not equal to y?
Compare to:
!(x == y) isn't x equal to y?
Note: avoid confusion between equality (==) and assignment (=).
<<< Relational Operators | Index | Operator Associativity >>> |