The equality
operators,
equal to ( == ) and not
equal to ( != ), have lower precedence than the relational
operators, but they behave similarly. The result type for these
operators is bool . The
equal-to operator ( == ) returns true (1) if both operands have the same value; otherwise, it returns false (0).
read more >>