Saved Bookmarks
| 1. |
Difference between = and == |
|
Answer» Both are not same, = is an Assignment Operator it is used to assign the value of variable or expression, while == is an Equal to Operator and it is a relation operator used for comparison (to compare value of both left and right side operands). |
|