Course Content
C++ Introduction
C++ Introduction
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).
Click👇
main.cpp
Using another compound assignment operator:
main.cpp
Everything was clear?
Section 3. Chapter 4