问题详情
有以下程序#include<stdio.h>void fun(int P){int d=2;P=d++;printf(“%d”,P);}main(){int a=1;fun(A);prinff(“%.d\n”,A);}程序运行后的输出结果是
A、32
B、12
C、21
D、22