vote up 5 vote down star
1

Duplicate

In C arrays why is this true? a[5] == 5[a]


Given an array

 myArray[5] = { 0, 1, 2, 3, 4 };

an element can be accessed as

 2[myArray]

Why? When I see this expression I'm imagining C trying to access the pointer "2" and failing to add "myArray" pointer increments to dereference that address. What am I missing?

flag
3  
Duplicate: stackoverflow.com/questions/381542/…. – Bastien LĂ©onard May 11 at 15:43
@Bastien: Thanks, I was looking for that but couldn't seem to find it. – Noldorin May 11 at 15:45
This is a truly evil "feature" of C. – Robert May 11 at 15:48

closed as exact duplicate by Noldorin, Joachim Sauer, Neil Butterworth, Johannes Schaub - litb, JaredPar May 11 at 16:06

1 Answer

vote up 17 vote down check

in C, a[b] is equivalent to *(a + b). And, of course, the + operator is commutative, so a[b] is the same as b[a] is the same as *(b + a) is the same as *(a + b).

link|flag
2  
It's worth to point out that in C, myArray is essentially an int variable that contains a pointer address, which is why this property works. The brackets tell it to evaluate the pointer to find the data at the addressed memory block. It doesn't try to access the memory first, and then add the index; it adds the pointer and index together and then accesses the memory. This approach is much more efficient, as you're not accessing two addresses, just one. – Eric May 11 at 15:44
Thanks a bunch - I know that's been explained to me before but couldn't quite remember it. – Mitch Flax May 11 at 15:44
2  
+1, and to be absolutely clear: a[2] == *(a+2) == 2[a] == *(2+a) – dwc May 11 at 15:45
1  
kevindtimm: I think you're a bit confused. You are correct that variables (identifiers) cannot start with a numeral. With 3[a] you have an identifier spelled 'a', there is no numeral in it. It is semantically identical to *(3 + a) which is identical to *(a + 3) which is identical to a[3]. – Chris Young May 11 at 15:51
2  
Here for history: cm.bell-labs.com/cm/cs/who/dmr/chist.html . It was V!i for BCPL, which indexed an array V at index i. the symmetry showed directly there. – Johannes Schaub - litb May 11 at 15:52
show 2 more comments

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