【简答题】请读程序: #include "stdio.h" FUNC(int A, int B) { int C; C=A+B; return C; } main ( ) { int X=6,Y=7,Z=8,R; R=FUNC((X,Y,X+Y),Z--); printf("%d\n",R);} 上面程序的输出结果是A. 11 B. 20 C. 21 D. 31
【单选题】请读程序: #include "stdio.h" FUNC(int A, int B) { int C; C=A+B; return C; } main ( ) { int X=6,Y=7,Z=8,R; R=FUNC((X,Y,X+Y),Z--); printf("%d\n",R); } 上面程序的输出结果是