fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. void fun (int a, int b)
  5. {
  6. printf ("%d %d\n", a, b);
  7. }
  8.  
  9. int main(void) {
  10. // your code goes here
  11. int a = 0;
  12. fun (a++, a++);
  13. printf ("%d", a);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
1 0
2