fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. long a=1, b=2, c=3;
  6. f(a,b,c);
  7. return 0;
  8. }
  9.  
  10. int f(int a, double b, double c)
  11. {
  12. printf("%d %f %f\n", a, b, c);
  13. return 0;
  14. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
1 0.000000 -0.000000