course content

Course Content

C++ Introduction

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).

Click👇

cpp

main.cpp

Using another compound assignment operator:

cpp

main.cpp

Everything was clear?

Section 3. Chapter 4