0
A+=10
what does that mean
5 Answers
+ 3
It is equivalent to A = A + 10.
+ 3
It is just a different, simplified way to write it. You can use either.
Also, similarly, you have -=, *=, /=, etc.
+ 3
it will increase u r A value by 10
and assign new value to A as A+10
0
is it new A equal old A plus 10?
0
A+=10
means
A=A+10



