gpt4 book ai didi

c - 这个C程序有什么问题? (全局变量)

转载 作者:太空宇宙 更新时间:2023-11-04 06:38:49 25 4
gpt4 key购买 nike

我是 C 的新手,我正在尝试使用全局变量我运行了这个程序,所有的输出都是“嘿,那里”,这是程序的第一部分。第二部分不显示。这是代码。

char count[20]="Hey there";
char dig[7]="pooop";

main()
{
puts(count);

return(0);
}
hey()
{
printf(" i %s you", dig);

return(0);
}

最佳答案

您需要调用第二个函数 hey() 才能获得它的输出。

例如,在main()

{
puts(count);
hey();
return 0;
}

main() 中调用 hey() 的确切位置由您决定(它需要在 return 之前虽然声明)。

关于c - 这个C程序有什么问题? (全局变量),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11388333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com