【单选题】
下列程序执行后的输出结果是()<br /> voidfunc1(inti);<br /> voidfunc2(inti);<br /> charst[]="hello,friend!";<br /> voidfunc1(inti)<br /> {printf("%c",st[i]);<br /> if(i<3){i+=2;func2(i);}<br /> }<br /> voidfunc2(inti)<br /> {printf("%c",st[i]);<br /> if(i<3){i+=2;func1(i);}<br /> }<br /> main()<br /> {inti=0;func1(i);printf("\n");}
A、hello
B、hel
C、hlo
D、hlm