Computer Science, asked by preethamr700210, 5 hours ago

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

Answers

Answered by brijrajsingh
0

Answer:

output:

After calculation x = -2

Explanation:

i typed your program and this is the output which i got

Similar questions