2
votes
Odd compile error in C: creating arrays
It looks fine to me, and I got no such warning. What compiler and flags did you use?
For reference, I used:
gcc -c foo.c -Wall -ansi -pedantic -W -Wextra
Where foo.c contained: …
17
votes
Why is 2[myArray] valid C syntax?
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).
…
