fork download
  1. #include <stdio.h>
  2.  
  3. f() {
  4. return 0;
  5. }
  6.  
  7. main(void) {
  8. printf("%d\n", f());
  9. printf("%d\n", f(42));
  10. printf("%d\n", f(42, 23));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4456KB
stdin
Standard input is empty
stdout
0
0
0