fork download
  1. #include <stdio.h>
  2.  
  3. void foo() {
  4. printf("Wow");
  5. }
  6.  
  7. int main(void) {
  8. foo();
  9. foo(1);
  10. foo("qwerty");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
WowWowWow