0
Please, need to know
3 Answers
+ 3
After a += ++b; a will be 16 (5+11) and b will be 11. 16 + 11 = 27
+ 3
During a += ++b;
b first gets incremented by 1.
b is now 11.
Then a gets incremented by b, 11.
a is now 16.
Then you printed a + b, 11 + 16 = 27.
+ 1
Oooohhhhh
Its so obvious
XD
Thanks