0
i can not understand x=x++
4 Answers
+ 2
x++ means in simple words use first increment second. so in x=x++ current value of x is assigned to x itself, so the value change does not come into effect
+ 1
++x means x will have incremented value
0
so ++x
0
oo