Reputation: 6606
I am using C.
Say I have a pointer to a integer called *myptr
int *myptr;
What would then be the difference between:
*myptr++
and...
*(myptr++)
Thanks Dan
Upvotes: 3
Views: 547
Reputation:
Since ++
has higher precedence than *
, there is no difference between the two.
Upvotes: 15