-->

*ptr++ is equivalent to:

*ptr++ is equivalent to:
a.    ptr++
b.    *ptr
c.    ++*ptr
d.    None of the above

Ans: d