Predict the output:
i)int a=10,b=15;
a= a + b++ + --b +b;
What will be the result of a and b after execution?
Answers
Answered by
0
Answer:
a=55 and b=15
Explanation:
a=a+b++ + --b +b
a=10+15+15+15
a=55
Similar questions