assignment operators perform shortcuts in common programming operations.
Answers
Answered by
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