当前位置: 技术问答>linux和unix
gcc编译 出现错误(.text+0x20): undefined reference to `main' collect2: ld 返回 1
来源: 互联网 发布时间:2017-04-19
本文导语: 编译的是很简单的hello world #include int main(void) { printf("Hello, world!n"); return 0; } 用过各种编译 gcc -o test test.c gcc -g -Wall test.c -o test 也不是很明白是什么意思 就是想至少能先输出hello wrold 新人不懂...
编译的是很简单的hello world
#include
int main(void)
{
printf("Hello, world!n");
return 0;
}
用过各种编译
gcc -o test test.c
gcc -g -Wall test.c -o test
也不是很明白是什么意思
就是想至少能先输出hello wrold
新人不懂,求指点
#include
int main(void)
{
printf("Hello, world!n");
return 0;
}
用过各种编译
gcc -o test test.c
gcc -g -Wall test.c -o test
也不是很明白是什么意思
就是想至少能先输出hello wrold
新人不懂,求指点
|
//把这个复制上次再运行一边看看 ,我运行是OK的
#include
int main(void)
{
printf("Hello, world!n");
return 0;
}