gpt4 book ai didi

c - C 中的 float main() 如何以及为何工作?

转载 作者:行者123 更新时间:2023-11-30 21:02:12 25 4
gpt4 key购买 nike

我尝试用谷歌搜索它,发现 C 中的 main() 返回类型为 'int' 。如果它是 'void' ,它在内部被视为 'int' 。不允许使用“float”或“double”。但是当我在代码块中编写此内容时:

double main()
{
printf("hello");
return 0;
}

执行成功。我想知道这是怎么可能的。

最佳答案

C 标准 n1124 表示

§ 5.1.2.2.1 程序启动

The function called at program startup is named main. The implementation declares no prototype for this function. It shall be defined with a return type of int and with no parameters: int main(void) { /* ... */ } or with two parameters (referred to here as argc and argv, though any names may be used, as they are local to the function in which they are declared):

int main(int argc, char *argv[])
{ /* ... */ }

or equivalent;9) or in some other implementation-defined manner.

因此,您的程序发生了什么是不确定的,因为您不遵守它应该遵守的规则。

关于c - C 中的 float main() 如何以及为何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31896604/

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