Section 2.30 Expressions-WE10-P1
Subgoals for evaluating an assignment statement.
- Determine resultant data type of expression
- Update variable for pre operators based on side effect
- Solve arithmetic equation, operator precedence
- Is the Left Hand Side (LHS) of the assignment statement a variable? Check the data type of the value on right hand side (RHS) against data type of LHS variable.
- Update variable for post operators based on side effect
Subsection 2.30.1
Given
int x,y,z;
int x = 42;
int y = 11;
int z = 5;
x = z;
y = x;
z = y;
Exercises Exercises
2.
3.
You have attempted 1 of 3 activities on this page.