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.

It seems that they're different when I debug them in gdb.

 (gdb) p order[1]
 $16 = (struct order_s *) 0x746440
 (gdb) p *order+1
 $17 = (struct order_s *) 0x746430
 (gdb) p *order
 $18 = (struct order_s *) 0x746420

What's the difference between *a[1] and *(*a+1) in C?

share|improve this question

1 Answer

up vote 8 down vote accepted

Order of operations. a[1] is the same as *(a+1). So, *a[1] is the same as *(*(a+1)). If you have *(*a+1) then you are actually doing *(a[0]+1).

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.