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
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
Since ++
has higher precedence than *
, there is no difference between the two.