#include<stdio.h> void fun(int i,int j) { printf("%d,%d\n",i,j); } void main() { int i=0; fun(++i,i++); }