_____ is augmented arithmetic assignment operator.
Answers
Answered by
0
Answer:
augmented assignment
Explanation:
Answered by
2
Augmented assignment is the combination, in a single statement, of a binary operation and an assignment statement: ... An augmented assignment expression like x += 1 can be rewritten as x = x + 1 to achieve a similar, but not exactly equal effect. In the augmented version, x is only evaluated once.
Similar questions