有以下程序int a=2;int f(int *a){ return (*a)++;}main(){ int s=0; { int a=5; s+=f(&a); } s+=f(&a); printf("%d ",s);}执行后的输出结果是A.10 B.9 C.7 D.8