Increment and Decrement
a++ is equivalent to a = a + 1
++a is equivalent to a = a + 1
Difference is when the value is returned: if prefix, the operation is applied before the value is return, if postfix, after
Examplea = 16;System.out.println(++a + “ ” + a++ + “ ” + a);