I am learning C language and quite confused the differences between ++*ptr and *ptr++. for example:

int x = 19;
int *ptr = &x;

I know ++*ptr and *ptr++ produce different results but I am not sure why is that?

Can anyone explain, please?

Thanks a lot.

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

These statements produce different results because of the way in which the operators bind. In particular, ++ have the same precedence as *, but the operators bind right-to-left (see this table for more info). Thus

++*ptr

is parsed as

++(*ptr)

meaning "increment the value pointed at by ptr," while

*ptr++

means

*(ptr++)

which means "increment ptr to go to the element after the one it points at, then dereference its old value" (since postfix ++ hands back the value the pointer used to have).

In the context you described, you probably want to write ++*ptr, which would increment x indirectly through ptr. Writing *ptr++ would be dangerous because it would march ptr forward past x, and since x isn't part of an array the pointer would be dangling somewhere in memory (perhaps on top of itself!)

Hope this helps!

link|improve this answer
@templatetypedef If you would do printf("%d",*ptr++) .It would first print the value at the location contained in ptr and then would increase ptr. – Algorithmist Mar 6 '11 at 9:15
@Algorithmist- That's correct; I think my answer covers this. Should I clarify it to make it more explicit? – templatetypedef Mar 6 '11 at 9:15
@templatetypedef i think * and ++ have the same priority but since their associativity is from L to R this is happening.Do you mean the same when you say ++ binds tighter than *. – Algorithmist Mar 6 '11 at 9:19
@Algorithmist- Thanks for pointing that out; you're absolutely correct. I will correct this. – templatetypedef Mar 6 '11 at 9:24
1  
Can't help myself from also mention the (invalid!) variant *++p, which tries to access something after x. Don't try this at home! – Bo Persson Mar 6 '11 at 12:17
show 1 more comment
feedback

As templatetypedef says, but you should provide the parenthesis around *ptr to ensure the outcome. For instance, the following yields 1606415888 using GCC and 0 using CLang on my computer:

int x = 19;
int *ptr = &x;
printf("%d\n", *ptr++);
printf("%d\n", *ptr);

And you expected x to be 20. So use (*ptr)++ instead.

link|improve this answer
don't you think first printf() should print 19 – Algorithmist Mar 6 '11 at 9:16
I'm, of course, talking about the second printf() here. – netrom Mar 6 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.