Question: 7. Like the assignment operator, the ++ and --operators replace the value of a variable. C++ also has compound assignment operators for convenience. For example,

7. Like the assignment operator, the ++ and --operators replace the value of a variable. C++ also has compound assignment operators for convenience. For example, the statement x=x+2 can be rewritten as x+=2. Simplify the following assignment statements. step = step +5 size = size -3 total = total 2 change = change /10 hours = hours %24
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
