+ 1
What the mean of += ?
3 Answers
+ 9
x += 5 is same as x = x + 5
Adding 5 to the variable x.
+ 4
More:
perhaps x+=5 equal/same to x=x+5
But In some old compiler
x+=5 and x=x+5 is completly different
+ 2
+= ;plus equal to;
example:
x+=y means x=x+y
same,