gpt4 book ai didi

c - 这个 C 代码在语法上正确吗?

转载 作者:行者123 更新时间:2023-11-30 18:34:50 25 4
gpt4 key购买 nike

我刚刚开始学习 C,对 return 语句的使用及其在 C 语言中的重要性有点困惑。

这是我的代码片段。这在语法上是否正确,或者我们在使用 int main() 时是否必须返回任何数值 0 或 1?

#include<stdio.h>

int main()
{
int i;


for(i=0;i<10;i++)
printf("\n Noooooooooo");

return ;
}

最佳答案

根据 C 2011 标准(草案 N1570)第 6.8.6.4 条第 1 段:

A return statement without an expression shall only appear in a function whose return type is void.

您的 return 语句没有表达式,并且出现在返回类型为 int 而不是 voidmain 函数中。因此你的程序违反了约束。

关于c - 这个 C 代码在语法上正确吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50088657/

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