1 2 3 4 5 6 7 8 9 | #include <stdio.h> int main() { printf("a "); fork(); return 0; } |
-
upload with new input
-
result: Success time: 0.01s memory: 1676 kB returned value: 0
#include <stdio.h> int main() { int i; for(i = 0; i < 2; i++) { fork(); printf("."); } }a a
-
result: Success time: 0.02s memory: 1676 kB returned value: 0
a a
-
result: Success time: 0.02s memory: 1720 kB returned value: 0
a a
-
result: Success time: 0.02s memory: 1720 kB returned value: 0
a a


