Difference between
= and ==
Java
:/
Answers
Answered by
1
Answer:
Difference between
= and ==
Java
Answered by
1
The “=” is an assignment operator is used to assign the value on the right to the variable on the left. The '==' operator checks whether the two given operands are equal or not. If so, it returns true. Otherwise it returns false.
Hopefully it will help you !!
Similar questions