fork download
  1. #include <stdio.h>
  2.  
  3. int func1(int x, int y, int z);
  4. int main() {
  5. int x = 10, y = 3;
  6. printf("%d, %d", func1(y, x, x), x - y);
  7. return 0;
  8. }
  9.  
  10. int func1(int x, int y, int z) {
  11. y = y + 4;
  12. return x + y + z;
  13. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
27, 7