gpt4 book ai didi

我无法理解的 C 代码中的编译器错误

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

我写了这段代码:

short foo(short a)
{
short b,c;
b=10;

c = a + b;

return c;
}

我收到编译器错误:

usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crt1.o: In function `_start':                                                                                                                        
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status

我哪里出错了?

这里 a 仍然是不确定的吗?我对 C 编程不太陌生,所以请原谅我对一些明显的事情的无知。

最佳答案

这不是编译器错误,而是链接器错误。您显示的代码没有损坏,而是不完整。留言内容

undefined reference to `main'

告诉您尚未定义main函数,该函数需要作为程序的起点。添加

int main(void) {
// code here that is supposed to run when the program is executed
}

到代码。

关于我无法理解的 C 代码中的编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28731257/

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