Saved Bookmarks
| 1. |
The equality testing operator in C is________ |
|
Answer» ong>Answer: EQUALITY operators: == and != The equality operators, EQUAL to ( == ) and not equal to ( != ... The equal-to operator ( == ) returns true if both operands have the same value; OTHERWISE, it returns false . The not-equal-to operator ( != ) returns true if the operands don't have the same value; otherwise, it returns false . |
|