fork download
  1. #include<stdio.h>
  2.  
  3. void test2()
  4. {
  5. return;
  6. }
  7.  
  8. void test()
  9. {
  10. return test2();
  11. }
  12.  
  13. int main()
  14. {
  15. test();
  16. printf("test");
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
test