Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - What is the difference between integer variables and integer expressions in C language?
What is the difference between integer variables and integer expressions in C language?
Variable: a name that can be assigned to other variables and is part of an expression.

Expression: It can be a variable, a return value of a function, or a combination of multiple variables connected by operators.

The biggest difference between variables and expressions is that variables can be used as the left value of =, while expressions can't.