下列程序执行后的输出结果是 void funcl(int i); void func2(int i); char st[]= hello,friend! ; void fund(int i) { cout<<st[i]; if(i<3){i+=2;func2(i);} } void func2(int i) { cout<<st[i]; if(i<3){i+=2;funcl(i);} } main( ) {int i=0;fund(i);cout<<endl;} A ) hello B) hel C) hlo D) hlm
下列程序执行后的输出结果是 void funcl(int i); void func2(int i); char st[]="hello,friend!"; void fund(int i) { cout<<st[i]; if(i<3){i+=2;func2(i);} } void func2(int i) { cout<<st[i]; if(i<3){i+=2;funcl(i);} } main( ) {int i=0;fund(i);cout<<endl;} A ) hello B) hel C) hlo D) hlm