fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. void fun(){
  5. printf("Hello!");
  6. return;
  7. }
  8.  
  9.  
  10. int main() {
  11. fun();
  12. fun();
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5316KB
stdin
6
stdout
Hello!Hello!