I've came across this interesting snippet. I said no way it could work (without crashing). Shockingly, it runs "ok" both on Linux (compiled with gcc) and on OSX (llvm). Even more disturbingly, Valgrind doesn't find anything wrong!!!
What gives?
int main(void) {
int a[3];
2[a] = 1;
}