I’m not really sure what the order here is. Is it:
1) Dereference the value of pointer p after increasing it
2) Dereference the value of pointer p before increasing it
I’m not really sure what the order here is. Is it: 1) Dereference the
Share
There is no ordering between the increment and the dereference. However, the
*operator applies to the result ofp++, which is the original value ofpprior to the increment.