20. What is the result after the execution of the following program segment. a= 7; b =++ a + 5; c= b- - + 10;
Answers
Answered by
1
Answer:
b=13; c=23.
Explanation:
++a= 8; (b now equals to 13)
b--= 13(value does not change because it has postfix.(c equals to 23)
(I hope it helps)
Similar questions