Find the final value of “c” in the following statement:
int a = 12, b = 9, c = -2;
c += a++ + ++a - --b + --a;
Answers
Answered by
0
Answer:
The result of c is 27 output
Similar questions