vote up 80 vote down star
37

As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a]

Joel says that it's because of pointer arithmetic but I still don't understand. Why does a[5] == 5[a] ?

Edit: The accepted answer is great. For a lower level view of how this works, see the comments section on that answer. There's a phenomenal conversation there about it. (This edit written about the comments available at the time. ie: the first ~16)

flag

It is crazy but it really works! – mateusza Jun 1 at 15:46

6 Answers

vote up 168 vote down check

Because a[5] will evaluate to:

*(a + 5)

and 5[a] will evaluate to:

*(5 + a)

and from elementary school math we know those are equal.

This is the direct artifact of arrays behaving as pointers, "a" is a memory address. "a[5]" is the value that's 5 elements further from "a". The address of this element is "a + 5". This is equal to offset "a" from "5" elements at the beginning of the address space (5 + a).

link|flag
20  
I wonder if it isn't more like *((5 * sizeof(a)) + a). Great explaination though. – John MacIntyre Dec 19 '08 at 17:06
6  
Yeah. I was going to mention the size, but thought I would complicate just things to get the core idea. – Mehrdad Dec 19 '08 at 17:07
2  
@Dinah: From a C-compiler perspective, you are right. No sizeof is needed and those expressions I mentioned are THE SAME. However, the compiler will take sizeof into account when producing machine code. If a is an int array, a[5] will compile to sth like mov eax, [ebx+20] instead of [ebx+5] – Mehrdad Dec 19 '08 at 17:18
4  
It's done automatically. Since only adding an half element to a pointer (thus pointing in the middle of some element isn't going to make sense anyway. and Treb, no &a[1] - &a[0] is always going to be 1 for all types (not only 4 bytes integers) – Johannes Schaub - litb Dec 19 '08 at 17:18
3  
@sr105: That's a special case for the + operator, where one of the operands is a pointer and the other an integer. The standard says that the result will be of the type of the pointer. The compiler /has to be/ smart enough. – aib Dec 23 '08 at 2:08
show 20 more comments
vote up 38 vote down

Because arrays are defined in terms of pointers. a[i] is defined to mean *(a + i), which is commutative.

link|flag
2  
The best answer here :) – gramm Aug 18 at 11:28
Excellent answer! – jdecuyper Oct 10 at 16:33
vote up 34 vote down

And, of course

 "ABCD"[2] == 2["ABCD"] == 'C'

The main reason for this was that back in the 70's when C was designed, computers didn't have much memory (64KB was a lot), so the C compiler didn't do much syntax checking. Hence "X[Y]" was rather blindly translated into "*(X+Y)"

This also explains the "+=" and "++" syntaxes. Everything in the form "A = B + C" had the same compiled form. But, if B was the same object as A, then an assembly level optimization was available. But the compiler wasn't bright enough to recognize it, so the developer had to (A += C). Similarly, if C was 1, a different assembly level optimization was available, and again the developer had to make it explicit, because the compiler didn't recognize it. (More recently compilers do, so those syntaxes are largely unnecessary these days)

link|flag
6  
Actually, that evaluates to false; the first term "ABCD"[2] == 2["ABCD"] evaluates to true, or 1, and 1 != 'C' :D – Jonathan Leffler Dec 19 '08 at 17:16
@Jonathan: same ambiguity lead to the editing of the original title of this post. Are we the equal marks mathematical equivalency, code syntax, or pseudo-code. I argue mathematical equivalency but since we're talking about code, we can't escape that we're viewing everything in terms of code syntax. – Dinah Dec 19 '08 at 17:26
2  
Isn't this a myth? I mean that the += and ++ operators were created to simplify for the compiler? Some code gets clearer with them, and it is useful syntax to have, no matter what the compiler does with it. – Thomas Padron-McCarthy Dec 19 '08 at 17:44
+= and ++ has another significant benefit. if the left hand side changes some variable while evaluated, the change will only done once. a = a + ...; will do it twice. – Johannes Schaub - litb Dec 19 '08 at 17:49
Heard that += reduces the odds for mistakes as you write variable names two times rather than three... – Liran Orevi Apr 21 at 8:02
show 4 more comments
vote up 9 vote down

Dinah Why is sizeof() taken into account. I thought the pointer to 'a' is to the beginning of the array (ie: the 0 element). If this is true, you only need *(a + 5). My understanding must be incorrect. What's the correct reason?

In pointer arithmetic, the size of the item pointed to by the pointer is accounted for. So

char *pch = 0;
pch++;
printf("%p\n", pch);

double *pdbl = 0;
pdbl++;
printf("%p\n", pdbl);

(on my machine) will print

1
8

It's the reason we can subtract two pointers and get the count of items between them rather than the number of bytes between them. It prevents us from having to put sizeof(T) everywhere in our code.

In a lot of ways, you can think of pointer arithmetic as array arithmetic. But I probably shouldn't have said that. :-)

link|flag
I sometimes believe that the H at the end of my name is invisible. Even family members often omit it. – Dinah Dec 19 '08 at 17:30
My apologies, I wrote that pretty quickly! – Frank Krueger Dec 19 '08 at 17:54
No worries. Seriously, I promise you I'll get a Christmas card this year to "Dina." Gracias for the edit. – Dinah Dec 19 '08 at 18:09
vote up 7 vote down

Nice question/answers.

Just want to point out that C pointers and arrays are not the same, although in this case the difference is not essential.

Consider the following declarations:

int a[10];
int* p = a;

In a.out, the symbol a is at an address that's the beginning of the array, and symbol p is at an address where a pointer is stored, and the value of the pointer at that memory location is the beginning of the array.

link|flag
1  
No, technically they are not the same. If you define some b as int*const and make it point to an array, it is still a pointer, meaning that in the symbol table, b refers to a memory location that stores an address, which in turn points to where the array is. – PolyThinker Dec 22 '08 at 5:42
vote up 4 vote down

One thing no-one seems to have mentioned about Dinah's problem with sizeof:

You can only add an integer to a pointer, you can't add two pointers together. that way when adding a pointer to an integer, or an integer to a pointer, the compiler always knows which bit has a size that needs to be taken into account.

link|flag
There's a fairly exhaustive conversation about this in the comments of the accepted answer. I referenced said conversation in the edit to the original question but did not directly address your very valid concern of sizeof. Not sure how to best do this in SO. Should I make another edit to the orig. question? – Dinah Apr 21 at 13:51

Your Answer

Get an OpenID
or

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