有如下程序
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");}
程序执行后输出的结果是
订单号:
遇到问题请联系在线客服
订单号:
遇到问题请联系在线客服