+ 5
What is this +=
11 Answers
+ 28
x += 1;
is the same as
x = x + 1;
+ 4
its means variable = variable +1
+ 3
its the short write for a = a + b
so a*=b means a = a * b and that for every possible operator
+ 2
x is increased by 1
+ 1
it is a type of short hand ...
e.g x+=1
which then changes to as
x=x+1
hope it helps you...
+ 1
a += b --> // a=a+b // b=b
0
addition and subtraction
0
It means ex : a+=1, means a= a+1
0
x is increased by one
0
example. add=add+variable
0
x+1