mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
12 lines
125 B
C
12 lines
125 B
C
|
|
||
|
int test(int Num) {
|
||
|
int Arr[Num];
|
||
|
Arr[2] = 0;
|
||
|
return Arr[2];
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
printf("%d\n", test(4));
|
||
|
return 0;
|
||
|
}
|