1 2 3 4 5 6 7 8 9 10 11 | void bar( const int a ) { int temp[a]; } int main(){ bar(5); int a = 9; bar(9); return 0; } |
dm9pZCBiYXIoIGNvbnN0IGludCBhICkKewogaW50IHRlbXBbYV07Cn0KCmludCBtYWluKCl7CiBiYXIoNSk7CiAgaW50IGEgPSA5OwpiYXIoOSk7CnJldHVybiAwOwp9
prog.cpp: In function ‘void bar(int)’: prog.cpp:3: warning: unused variable ‘temp’ prog.cpp: In function ‘int main()’: prog.cpp:8: warning: unused variable ‘a’
-
upload with new input
-
result: Success time: 0s memory: 2720 kB returned value: 0


