the pre inc operator increments the value of that particular variable on that line itself
the post inc operator increments the value of that particular variable after going on the next line
in simple words
eg.
e=5; on this line value of e=5
e++; on this line value of e=5
++e; on this line value of e=7.
gaurav mody.