fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. // your code goes here
  5. void fun();
  6. int main()
  7. {
  8. fun();
  9. printf("hello world\n");
  10.  
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty