Course Content
Introduction to C++
Compound Assignment Operator
A compound assignment operator is a combined operator that combines an assignment operator and an arithmetic (or a bitwise) operator.
The result of such an operation is assigned to the left operand (what is before the "="
sign).
For example:
It is the same as:
main.cpp
Using another compound assignment operator:
main.cpp
Section 3.
Chapter 4