1/24/00
COM1100 Winter2000 Lecture 7
25
Difference between ++x and x++
n
++x
n
increment x
n
then use new value
n
x++
n
use old value of x
n
then increment x