8 lines
63 B
C
8 lines
63 B
C
|
|
||
|
void foo() {
|
||
|
int a[10];
|
||
|
a[0] = 0;
|
||
|
return a[2];
|
||
|
}
|
||
|
|