Computer Science, asked by cakriti93, 9 months ago


Predict the output
int a=6 b=5;
a+=a++%b++*a+b++*--b

Answers

Answered by arkadeep8537
16

Answer:

49

Explanation:

a= 6 + (6 % 5) × 7 + (6 × 6)

Hence a = 6 + 1 × 7 + 36 = 49

Similar questions