问题详情

下列程序 void func1(int i); void func2(int i) char st[]="hello,friend!"; void funcl(int i) { printf("%c",st[i]); if(i<3){i+=2;func2(i);} } void func2(int i) { printf("%c",st[i]); if(i<3){i+=2;funcl(i);} } main() { int i=0;funcl(i);printf(" ");} 执行后的输出结果是( )


A、hello

B、hel

C、hlo

D、hlrn

时间:2022-01-03 20:32 关键词:

答案解析

C
相关问题