Hi again guys,
having some difficulty with this question :
What does this code block print? Explain your answer using the Java
operator precedence table.
int x = 5;
int y = 10;
int z = ++x * y--;
System.out.println(x + ", " + y + ", " + z);
I don't really understand...would appreciate any help...thanks guys!