L Leo New member Jul 1, 2010 #1 if you compile and run this: int x = 1; System.out.println( x++ != 0 ? 60/x : 0); It prints 30 I want step by step explanation of what operations executes first and why. Thanks Sorry, not just the first operation, all of them to the last result.
if you compile and run this: int x = 1; System.out.println( x++ != 0 ? 60/x : 0); It prints 30 I want step by step explanation of what operations executes first and why. Thanks Sorry, not just the first operation, all of them to the last result.