下列程序执行后的输出结果是()。void func1 (int i);void func2(int i);char st[]="hello,friend!

下列程序执行后的输出结果是()。 void func1 (int i); void func2(int i); char st[]="hello,friend!"; void func1 (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;func1(i);} A.hello B.hel C.hol D.hlm

时间:2023-08-16 21:02:15

相似题目