course content

Course Content

Introduction to C++

Compound Assignment OperatorCompound 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:

cpp

main.cpp

Using another compound assignment operator:

cpp

main.cpp

Section 3.

Chapter 4