1 2 3 4 5 6 7 8 9 10 11 12 | #include <stdio.h> void change(int x) { x = 0; } int main(void) { int x = 0; change(x); printf("%d", x); return 0; } |
I2luY2x1ZGUgPHN0ZGlvLmg+IAoKdm9pZCBjaGFuZ2UoaW50IHgpIHsKICAgIHggPSAwOwp9CgppbnQgbWFpbih2b2lkKSB7IAogICAgaW50IHggPSAwOwogICAgY2hhbmdlKHgpOyAKICAgIHByaW50ZigiJWQiLCB4KTsKICAgIHJldHVybiAwOyAKfSA=
-
upload with new input
-
result: Success time: 0.01s memory: 1676 kB returned value: 0
0


