下列程序执行后的输出结果是______。
A.hello
B.hel
C.hlo
D.hlm void func1 (int ; void func2 (int ; char st[]="hello,friend!"; void func1(int { printf("%c",s; if(i<3){ i+=2;func2(; } } void func2 (int { printf("%c",s; if(i<3){ i+=2;func1(; } } main() { int i=0;func1(;printf("\n");}
参考答案:C