Google News
logo
C-Language - Interview Questions
What is the difference between ++a and a++?
"++a"  is called prefixed increment and the increment will happen first on a variable. "a++"is called postfix increment and the increment happens after the value of a variable used for the operations.
Advertisement