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 increments and then uses the variable. a++ uses and then increments the variable.
++a
a++
If you have
a = 1;
and you do
System.out.println(a++); //You will see 1 //Now a is 2 System.out.println(++a); //You will see 3
codaddict explains your particular snippet.