What is the difference between the expression "++b" and "b++"?
Answer:
-With ++b, the increment happens first on variable b, and the resulting value is used. This is called as Prefix increment.
-With b++, the current value of the variable will be used in an operation. This is called as postfix increment.