Differentiate between the expression "++a" and "a++"?
- With ++a, increment happens first on variable a, and resulting value is used. This is known as prefix increment.
- With a++, current value of the variable would be used in an operation. This is termed as postfix increment.