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