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