gpt4 book ai didi

c - 'main' 的返回类型不是 'int'

转载 作者:太空宇宙 更新时间:2023-11-04 05:18:05 26 4
gpt4 key购买 nike

我正在学习C语言,写过如下代码:

#include <stdio.h>
void main()
{
char ch='a';
printf("%c\n", ch);
}

然后我用GCC编译代码,但是我得到一个错误:

return type of 'main' is not 'int' [-Wmain-return-type]

我没有使用任何数据类型 int,怎么了?

最佳答案

正如编译器告诉您的那样,main() 必须 返回 int

int main(void)
{
return 0;
}

返回值是程序的退出代码。

关于c - 'main' 的返回类型不是 'int',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28091423/

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