未知题型 下列程序执行后输出的结果是______。 int d=l; fun(int p) { int d=5; d+=p++; printf('%d,',d); } main() { int a=3; fun(a); d+=a++; printf('%d/n',d); }D.9,5
未知题型 以下程序 #include<stdio.h> #include<string.h> main() { char*pl='abc',*p2='ABC',str[50]='xyz'; strcpy(str+2.strcat(p1,p2)); printf('%s/n,str); } 的输出是______。A.xyzabcABCB.zabcABCC.yzabcABCD.xyabcABC
未知题型 下面程序 main() { int x=100,a=10,b=20,okl=5,ok2=0; if(a<B) if(b!=15) if(!ik1) x=1; else if(ok2)x=10; x=-1; printf('%d/n',x); } 的输出是______。D.不确定的值