0 votes
in C Plus Plus by

Describe the difference between = and == symbols in C programming?

1 Answer

0 votes
by

) ‘==' is the comparison operator which is used to compare the value or expression on the left-hand side with the value or expression on the right-hand side.

‘=' is the assignment operator which is used to assign the value of the right-hand side to the variable on the left-hand side.

Related questions

0 votes
asked Jan 6 in C Plus Plus by GeorgeBell
0 votes
asked Jun 11, 2020 in C Plus Plus by Robindeniel
...