单选

有如下程序

void func1(int st[],int i)

{  printf("%c",st[i]);

if(i<3){i+=2;func2(st,i);}

}

void func2(int st[],int i)

{  printf("%c",st[i]);

if(i<3){i+=2;func1(st,i);}

}

main()

{  char st[ ]="hello,friend! ";

int i=0;func1(st,i);

printf("\n");}

程序执行后输出的结果是

  • A.hello      B.hel   
  • C.hlo            D.编译出错
参考答案
您可能感兴趣的试题
¥

订单号:

遇到问题请联系在线客服

订单号:

遇到问题请联系在线客服