有以下程序
int d=1;
void fun (int p)
{
int d=5;
d+=p++;
printf("%d",d);
}
main()
int a=3;
fun(a);
d+=a++;
printf("%d\n", d);
程序的输出结果是( )
9 6
9 4
8 4
8 5