Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Consider:

void foo1(char **p) { *p++; }
void foo2(char **p) { *p += 1; }

and

char *s = "abcd";
char *a = s; 
foo1(&a); 
printf("%s", a); //abcd

but if I use foo2() instead of:

char *a = s; 
foo2(&a); 
printf("%s", a); //bcd

Can someone explain it?

share|improve this question
12  
Because *p++ is the same as *(p++) – Paul Tomblin Aug 31 '12 at 19:25
3  
operator precedence – chris Aug 31 '12 at 19:25
2  
Also try void foo3(char **p) { (*p)++; } – Michael Burr Aug 31 '12 at 20:34
2  
enjoy your nice question badge :-) – Ricky Oct 12 '12 at 3:49

2 Answers

up vote 62 down vote accepted

The key is the precedence of the += and the ++ operator. The ++ has a higher precedence than the += (in fact, assignment operators have the second lowest precedence in C), so the operation

*p++

means dereference the pointer, then increment the pointer itself by 1 (as usually, according to the rules of pointer arithmetic, it's not necessarily one byte, but rather sizeof(*p) regarding the resulting address). On the other hand,

*p += 1

means increment the value pointed to by the pointer by one (and do nothing with the pointer itself).

share|improve this answer
3  
You did such a great job of explaining it, but could you please add in one detail *p++ increments the pointer itself by 1 "unit", so a char pointer might increment by one, while an int pointer might increment by 4, etc, depending on implementation specifics. – Edwin Buck Aug 31 '12 at 19:27
2  
@EdwinBuck: I don't really see the relevance, that's just normal pointer arithmetic and not the focus of the question. – GManNickG Aug 31 '12 at 19:29
4  
@EdwinBuck whether a pointer is an int or a char, when you increment it, it increases by one. The actual address that represents that pointer may change more than one byte, due to the size of the pointer however. – Richard J. Ross III Aug 31 '12 at 19:30
1  
@EdwinBuck of course, but when talking about pointer arithmetic, who cares about the exact addresses? – H2CO3 Aug 31 '12 at 19:42
1  
@EdwinBuck that someone is rather a something, and it's called a "compiler" ;) – H2CO3 Aug 31 '12 at 19:47
show 13 more comments

Precedence. The postfix ++ binds tighter than the prefix * so it increments p. The += is at the low end of the precedence list, along with the plain assignment operator, so it adds 1 to *p.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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