-->
当前位置:首页 > Eng > 正文内容

填空题:阅读下列程序,写出程序运行的输出结果(函数的调用)

Luz2年前 (2022-11-20)Eng644
#include <stdio.h>
char st[ ] = "hello,friend!";
void func1(int i);
void func2(int i);
void func1 (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; func1 (i); }
}

int main( )
{
int i = 0;
func1(i);
printf("\n");
return 0;
}

//程序的运行结果是:







answer:
第1空:hlo ||

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。