已知 int k=0; 以下程序的运行结果是( )。
void fun(int m) { m+=k; k+=m; printf("%d%d",m,k++); }
void main() { int i=4; fun(i++); printf("%d%d\n",i,k); }