up vote 275 down vote favorite
93
share [g+] share [fb]

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)

link|improve this question

It is crazy but it really works! – mateusza Jun 1 '09 at 15:46
3  
would something like a[+] also work like *( a++) OR *(++a) ? – Egon May 13 '10 at 16:14
3  
@Egon: That's very creative but unfortunately that's not how compilers work. The compiler interprets a[1] as a series of tokens, not strings: *({integer location of}a {operator}+ {integer}1) is the same as *({integer}1 {operator}+ {integer location of}a) but is not the same as *({integer location of}a {operator}+ {operator}+) – Dinah May 13 '10 at 17:24
Dinah, I'm confused as to why you used the word 'unfortunately' in your comment. Would you want the compiler to act in such a potentially confusing manner? – superjoe30 Aug 11 '11 at 6:12
feedback

8 Answers

up vote 420 down vote accepted

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|improve this answer
84  
I wonder if it isn't more like *((5 * sizeof(a)) + a). Great explaination though. – John MacIntyre Dec 19 '08 at 17:06
23  
Yeah. I was going to mention the size, but thought I would complicate just things to get the core idea. – Mehrdad Afshari Dec 19 '08 at 17:07
14  
@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 Afshari Dec 19 '08 at 17:18
11  
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
11  
@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 29 more comments
feedback

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

link|improve this answer
6  
The best answer here :) – gramm Aug 18 '09 at 11:28
Excellent answer! – jdecuyper Oct 10 '09 at 16:33
Arrays are not defined in terms of pointers, but access to them is. – Lightness Races in Orbit May 12 '11 at 23:20
@Tomalak: Thanks. I have edited accordingly. – David Thornley May 13 '11 at 13:47
:) – Lightness Races in Orbit May 13 '11 at 14:49
feedback

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|improve this answer
25  
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
2  
@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
8  
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
2  
Heard that += reduces the odds for mistakes as you write variable names two times rather than three... – Liran Orevi Apr 21 '09 at 8:02
2  
No - "ABCD"[2] == *("ABCD" + 2) = *("CD") = 'C'. Dereferencing a string gives you a char, not a substring – MSalters Sep 21 '09 at 10:34
show 5 more comments
feedback

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|improve this answer
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 '09 at 13:51
@user30364: +1. I kept reading and reading hoping someone would address this. – LarsH Dec 1 '10 at 20:45
feedback

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|improve this answer
1  
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
1  
My apologies, I wrote that pretty quickly! – Frank Krueger Dec 19 '08 at 17:54
1  
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
feedback

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|improve this answer
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
feedback

Not an answer, but just some food for thought. If class is having overloaded index/subscript operator, the 0[x] will not work:

class Sub
{
public:
    int operator [](size_t nIndex)
    {
        return 0;
    }   
};

int main()
{
    Sub s;
    s[0];
    0[s]; // ERROR 
}

Since we dont have access to int class, this cannot be done:

class int
{
   int operator[](const Sub&);
};
link|improve this answer
feedback

To answer the question literally. It is not always true that x == x

double zero = 0.0;
double a[] = { 0,0,0,0,0, zero/zero}; // NaN
cout << (a[5] == 5[a] ? "true" : "false") << endl;

prints

false
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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