fork download
  1. #include <stdio.h>
  2.  
  3. void anotherFunc();
  4. int main(int argc, char *argv[])
  5. {
  6.  
  7. void func(void);
  8.  
  9. func();
  10. anotherFunc();
  11. //yetAnotherFunc();
  12. }
  13.  
  14. void func(void)
  15. {
  16. printf("func\n");
  17. }
  18.  
  19. void anotherFunc()
  20. {
  21. func();
  22. }
  23.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
func
func