gpt4 book ai didi

c - 来自 Kernighan 和 Ritchie 的原始 C 你好,世界程序未编译

转载 作者:行者123 更新时间:2023-12-04 01:53:07 27 4
gpt4 key购买 nike

我正在尝试使用 Kernighan 和 Ritchie 的书(C 圣经)来学习 C。在尝试使用 tcc 和 MinGW(使用 Windows)编译第一个问题时。它给了我一条错误信息。最详细的来自 Min GW:helloworld.c:3:8: 错误:'(' token 之前应为 ')'

这是我的程序:

main()

(

printf("hello, world\n");

)

据我所知,它完全符合本书的要求。这个现在过时了吗?我一直在寻找这个,但仍然找不到我做错了什么。请帮忙。

提前致谢!

最佳答案

( blahblah; ){ blahblah; 不同},并且您的书可能有点过时(尽管代码应该可以很好地学习,即使有些需要更改)。当前的标准 C 是

#include <stdio.h>
int main(void)
{
printf("hello, world\n");
return 0;
}

main(void) 如果您想读取命令行参数,也可以是 main(int argc, char *argv[])

关于c - 来自 Kernighan 和 Ritchie 的原始 C 你好,世界程序未编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8022047/

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