Assume the given declarations and fill in the value of the expression . int a = 1, b = 2, c = 3;
Expression: a++ + --b
Answers
Answered by
1
Answer:-
Given,
a=1,b=2 and c=3
a++ + --b
=1+1
=2
Now,
a=2
So,
a++ + --b=2
a=2
b=1
c=3.
These are the final values after execution.
Similar questions