What are augmented assignment operators ? How are they useful ?
Answers
Answered by
3
Answer:
An augmented assignment is generally used to replace a statement where an operator takes a variable as one of its arguments and then assigns the result back to the same variable. A simple example is x += 1 which is expanded to x = x + (1) . Similar constructions are often available for various binary operators.
mark it as brainliest and follow me
Similar questions