Computer Science, asked by yashkosli20, 2 months ago

Write 2 example of augmented assignment operators statements.​

Answers

Answered by fida9390
1

Answer:

Addition and Assignment (+=):x+=y is equivalent to x=c+y

Subtraction and Assignment (-=): x-=y is equivalent to x=x-y

Similar questions