describe the difference between = and == symbol in c programming?
Answers
Answered by
0
Answer:
The difference between = and == is when you use = the value is assigned, for ex: i=10 which means the constant 10 assign to variable i. But == is used for comparison, for ex: if(i==10) in this case we are comparing if the value of variable i is 10
Similar questions