单选题 下列程序执行后的输出结果是(    )。
   voidfuncl(int i):
   voidfunc2(int i);
   char st[]="hello,friend!";
   voidfuncl(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()
   {
    inti=0:
    futicl(i);
    printf("\n");
   }
   A.hello    B.hel    C.hlo D.hlm
【正确答案】 C
【答案解析】