explain assignment and short hand assignment operators
Answers
Answered by
0
Answer:
Assignment operator is used to assign value to a variable (memory location). There is a single assignment operator = in C. It evaluates expression on right side of = symbol and assigns evaluated value to left side the variable. ... Whereas LHS must be a variable (valid memory location).
Similar questions