Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question
1  
It is crazy but it really works! – mateusza Jun 1 '09 at 15:46
4  
would something like a[+] also work like *( a++) OR *(++a) ? – Egon May 13 '10 at 16:14
5  
@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
2  
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
3  
An interesting compound variation on this is illustrated in Illogical array access, where you have char bar[]; int foo[]; and foo[i][bar] is used as an expression. – Jonathan Leffler Oct 17 '12 at 6:38
show 2 more comments

10 Answers

up vote 664 down vote accepted

The C standard defines the [] operator as follows:

a[b] == *(a + b)

Therefore 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).

share|improve this answer
134  
I wonder if it isn't more like *((5 * sizeof(a)) + a). Great explaination though. – John MacIntyre Dec 19 '08 at 17:06
37  
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
43  
John, no the sizeof isn't needed. it's automatically incremented by the sizeof – Johannes Schaub - litb Dec 19 '08 at 17:12
23  
@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
18  
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
show 36 more comments

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

share|improve this answer
9  
The best answer here :) – gramm Aug 18 '09 at 11:28
Excellent answer! – jdecuyper Oct 10 '09 at 16:33
3  
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
show 1 more comment

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)

share|improve this answer
43  
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
3  
@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
9  
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
5  
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 10 more comments

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. :-)

share|improve this answer
2  
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

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.

share|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
What was Dinah's "problem" with sizeof? There is no indication of sizeof in the question. – Lightness Races in Orbit Jan 17 at 17:55

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.

share|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
1  
Very good point. I remember having a very nasty bug when I defined a global symbol as char s[100] in one module, declare it as extern char *s; in another module. After linking it all together the program behaved very strangely. Because the module using the extern declaration was using the initial bytes of the array as a pointer to char. – Giorgio May 2 '12 at 18:15
Originally, in C's grandparent BCPL, an array was a pointer. That is, what you got when you wrote (I have transliterated to C) int a[10] was a pointer called 'a', which pointed to enough store for 10 integers, elsewhere. Thus a+i and j+i had the same form: add the contents of a couple of memory locations. In fact, I think BCPL was typeless, so they were identical. And the sizeof-type scaling did not apply, since BCPL was purely word-oriented (on word-addressed machines also). – dave May 3 '12 at 2:33
I think the best way to understand the difference is to compare int*p = a; to int b = 5; In the latter, "b" and "5" are both integers, but "b" is a variable, while "5" is a fixed value. Similarly, "p" & "a" are both addresses of a character, but "a" is a fixed value. – James Curran Mar 12 at 16:34

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
share|improve this answer
2  
This is the case, thanks for indicate this. – Chapuller Jul 21 '12 at 23:48
3  
Actually a "nan" is not equal to itself: cout << (a[5] == a[5] ? "true" : "false") << endl; is false. – TrueY Apr 23 at 9:34

For pointers in C, we have

a[5] == *(a + 5)

and also

5[a] == *(5 + a)

Hence it is true that a[5] == 5[a].

share|improve this answer

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&);
};
share|improve this answer
class Sub { public: int operator[](size_t nIndex) const { return 0; } friend int operator[](size_t nIndex, const Sub& This) { return 0; } }; – Ben Voigt Apr 5 at 17:23
Have you actually tried compiling it? There are set of operators that cannot be implemented outside class (i.e. as non-static functions)! – Ajay Apr 5 at 21:10
oops, you're right. "operator[] shall be a non-static member function with exactly one parameter." I was familiar with that restriction on operator=, didn't think it applied to []. – Ben Voigt Apr 5 at 21:21

I just find out this ugly syntax could be "useful", or at least very fun to play with when you want to deal with an array of indexes which refer to positions into the same array. It can replace nested square brackets and make the code more readable !

int a[] = { 2 , 3 , 3 , 2 , 4 };
int s = sizeof a / sizeof *a;  //  s == 5

for(int i = 0 ; i < s ; ++i) {  

           cout << a[a[a[i]]] << endl;
           // ... is equivalent to ... 
           cout << i[a][a][a] << endl;  // but I prefer this one, it's easier to increase the level of indirection (without loop)

}

Of course, I'm quite sure that there is no use case for that in real code, but I found it interesting anyway :)

share|improve this answer

protected by Community May 18 at 13:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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