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