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