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