下列程序执行后的输出结果是______。

admin2013-06-11  31

问题 下列程序执行后的输出结果是______。

选项 A、hello
B、hel
C、hlo
D、hlm void func1 (int i); void func2 (int i); char st[]="hello,friend!"; void func1(int i) { printf("%c",st); if(i<3){ i+=2;func2(i); } } void func2 (int i) { printf("%c",st); if(i<3){ i+=2;func1(i); } } main() { int i=0;func1(i);printf("\n");}

答案C

解析
转载请注明原文地址:https://kaotiyun.com/show/QyJp777K
0

最新回复(0)