Give output: int x=2; x= x++ - x++ - --x + --x; System.out.println("After calculation x = "+x);
Answers
Answered by
0
Answer:
output:
After calculation x = -2
Explanation:
i typed your program and this is the output which i got
Similar questions