Computer Science, asked by sunnyrana2424, 7 months ago

predict the output :
int a=12;b=10;
b+=a++;
find a and b


Answers

Answered by halderpriyanka486
1

Answer:

22

Explanation:

b=b+(a++)

b=10(12)

b=22

Similar questions