1 2 3 4 5 6 7 8
static const int foo[] = { 1, 2 }; static void main(void) { int x, y; x = foo[0]; y = foo[1]; }