i++ & ++i

Can any one tell me difference between i++ and ++i.
As i know i++ stands for i=i+1 but what is ++i?
You can read here: http://www.hotscripts.com/forums/c-c/57931-c-tip-what-difference-between-postfix-prefix-operators.html

With prefix increment (++i) you increment BEFORE taking the value. With postfix it is the opposite.
Topic archived. No new replies allowed.