6 What is the difference between the following statementsa=10 and a==10
Answers
Answered by
1
Answer:
a=10 means that a value is assigned to a variable
And
a==10 means that a is compare to a value
Similar questions