Can you explain to me the output of this Java code?
int a=5,i; i=++a + ++a + a++; i=a++ + ++a + ++a; a=++a + ++a + a++; System.out.println(a); System.out.p
++a is prefix increment operator:
a++ is postfix increment operator:
Once you remember the rules, EZ for ya to calculate everything!