fork download
  1. #include <stdio.h>
  2.  
  3. int f( i, d )
  4. int i;
  5. double d;
  6. {
  7. printf( "%d : %lf", i, d );
  8. }
  9.  
  10.  
  11. int main(void) {
  12.  
  13. f( 42, 100.500 );
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
42 : 100.500000