gpt4 book ai didi

在 C 编程中,无法在主函数内调用 void 用户定义函数

转载 作者:行者123 更新时间:2023-11-30 20:20:48 27 4
gpt4 key购买 nike

当我尝试运行以下程序时

#include<stdio.h>
/* demo.c: My first C program on a Linux */
void main()
{
getString();
}

void getString()
{
printf("Hello World");
}

我收到以下错误:

sample.c:8:6: warning: conflicting types for ‘getString’ [enabled by default]
void getString()
^
sample.c:5:5: note: previous implicit declaration of ‘getString’ was here
getString();

我无法找出为什么在编译时会出现此错误。

非常感谢任何帮助。提前致谢。

最佳答案

您的程序无法获取 getString() 方法的声明,只需在 main() 内调用该方法之前声明您的方法即可。你能做的是:

#include<stdio.h>
/* demo.c: My first C program on a Linux */
void getString()
{
printf("Hello World");
}

void main()
{
getString();
}

关于在 C 编程中,无法在主函数内调用 void 用户定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44692388/

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