Does *p++ increment after dereferencing? [duplicate]

There is no ordering between the increment and the dereference. However, the * operator applies to the result of p++, which is the original value of p prior to the increment.

Leave a Comment