Pointers - Programming

Q1:

Are the expression *ptr++ and ++*ptr are same?

A True

B False

ANS:B - False

*ptr++ increments the pointer and not the value, whereas the ++*ptr increments the value being pointed by ptr