单项选择题

以下程序的输出结果是______。
int x=1;
fun(int p)
int x=4;
x+=p++;
printf("%d",x);
main()
int a=3;
fun(

A.; x+=a++;
printf("%d