Computer Science, asked by debina80, 4 months ago

assignment operators perform shortcuts in common programming operations.​

Answers

Answered by ahmedkhi2009
1

Answer:

The assignment operator is evaluated from right to left, so a = b = c = 0; would assign 0 to c, then c to b then b to a. The shortcut assignment operator can be used for all Arithmetic Operators i.e. You can use this style with all arithmetic operators.

Similar questions