+ 1
Can you explain clearly what is the different between postfix and prefix in C++?
Especially for the result between that two things.
3 Réponses
+ 1
Here you will find an explanation
http://stackoverflow.com/questions/7031326/what-is-the-difference-between-prefix-and-postfix-operators
+ 1
prefix: increments the value and then proceeds with the expressions,,,,,,where as in postfix: it evaluates the expression and then preforms in incrementing.