int x=10;
System.out.println(x++);
System.out.println(--x);
Answers
Answered by
6
Answer:
int x=10;
System.out.println(x++);
OUTPUT:10
/ ( but x will be changed into11)
System.out.println(--x);
OUTPUT: 10.
Hope this helps you..
Similar questions