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