different between = and ==
Answers
Answered by
1
Answer:
= is an assignment operator i.e. it is used to store a value in a variable.ex int x=5
== is a relational operator that means that the two numbers are equal.ex if(5==a)
In the above statement 5 is equal to a.
Answered by
0
Answer:
= is called assignment operator
== is called as comparision operator
Explanation:
Mark me as a brainliest.
Similar questions