fork(1) download
  1. #include <stdio.h>
  2.  
  3. int f(x, y, z)
  4. int x;
  5. int y;
  6. int z;
  7. {
  8. return x + y + z;
  9. }
  10.  
  11.  
  12. int main(void) {
  13. printf("%d\n", f(1, 2, 3));
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
6