fork(1) download
  1. #include <stdio.h>
  2. int main(void) {
  3. double aa,bb=10;
  4. aa=foo(bb);
  5. printf("%d",aa);
  6. return 0;
  7. }
  8. int foo(int x)
  9. {
  10. return x;
  11. }
  12.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
1822004312