What is the meaning of following Code? Code is from the regression test suite of GCC.
static char * name[] = { [0x80000000] = \"bar\" };
It's a C99 designated initializer. the value in brackets specifies the index to receive the value.