distinguish between a=10 and a==10.
Answers
Answered by
1
means that we are assigning the value "10" to the variable "a"
a==10 means we are checking if the value of a if it is 10
Answered by
0
a = 10 means that we are assigning the value "10" to the variable "a"
a == 10 means we are checking if the value of a if it is 10
Similar questions