Computer Applications
What will be the output of the following code?
int x = 9;
x -= 2 * --x / x++ % 3;
System.out.println("x = " + x);
What will be the output of the following code?
int x = 9;
x -= 2 * --x / x++ % 3;
System.out.println("x = " + x);