In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?
++i
i++
for
a=i++ means a contains current i value a=++i means a contains incremented i value