The _______ operator is used to compare whether two C++ values are not equal. 

  • != 
  • == 
  • >= 
  • <=
The != operator in C++ is the "not equal to" operator. It returns true if the operands on either side are not equal. For example, 5 != 3 evaluates to true, while 5 != 5 evaluates to false. The other options represent other comparison operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *