== is an assignment operator?
Answers
Answered by
0
Answer:
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.
Answered by
1
No, == is an relational operator which is used for equality check.
Similar questions