Computer Science, asked by salonipatil1042000, 10 months ago

int x=10;
System.out.println(x++);
System.out.println(--x);

Answers

Answered by Anonymous
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
Math, 5 months ago