Computer Science, asked by preethamr700210, 7 hours ago

int x=2; x= x++ - x++ - --x + --x; System.out.println("After calculation x = "+x);​

Answers

Answered by CoderRishav
1

Answer:

x = -6

x = 2

x = x++ - x++ - --x + --x

2 - 3 - 3 + 2

2 - 3 - 5

-6

Similar questions