9 lines
100 B
C
9 lines
100 B
C
|
static const int foo[] = { 1, 2 };
|
||
|
|
||
|
static void main(void)
|
||
|
{
|
||
|
int x, y;
|
||
|
x = foo[0];
|
||
|
y = foo[1];
|
||
|
}
|