A-A+

有如下程序void func1(int st[] int i){ printf("%c" st[i]); if(i}void func2(int st[] int i)

2020-10-12 15:29:18 IT认证 阅读

问题详情

有如下程序void func1(int st[],int i){ printf("%c",st[i]); if(i}void func2(int st[],int i){ printf("%c",st[i]); if(i}main(){ char st[ ]="hello,friend! "; int i=0;func1(st,i); printf("\n");}程序执行后输出的结果是A.hello B.hel C.hlo D.编译出错

参考答案

考点: