int a= -10 b= ++a
b= ++a
a= ++b + --b
Answers
Answered by
1
Answer:
b= -9
a= -8 + (-9)
a= -17
b is -9 and a is -17
Similar questions