QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1271|回复: 3

求助:向各位大哥请教一个程序编译问题,谢谢!

[复制链接]
发表于 2006-7-3 16:16:32 | 显示全部楼层 |阅读模式
请教:
我有三个程序,分别为 test1.c ,test2.c ,test3.c

#include <stdio.h>
int main()
{
printf("test1");
return 1;
}

#include <stdio.h>
int main()
{
printf("test2");
return 1;
}

#include <stdio.h>
int main()
{
printf("test3");
return 1;
}


我这样编译他们,提示为:
[root@localhost linuxss]# gcc -Wall -o program test1.c test2.c test3.c
test1.c:6:2: warning: no newline at end of file
test2.c:6:2: warning: no newline at end of file
test3.c:6:2: warning: no newline at end of file
/tmp/ccGxh8RG.o(.text+0x0): In function `main':
: multiple definition of `main'
/tmp/cckfv0cq.o(.text+0x0): first defined here
/tmp/ccu0FSg4.o(.text+0x0): In function `main':
: multiple definition of `main'
/tmp/cckfv0cq.o(.text+0x0): first defined here
collect2: ld returned 1 exit status


各位大哥,这是什么错误啊?我要怎么改呢?
是不是我的程序有问题,可是每一个是能编译的啊?

谢谢!
发表于 2006-7-3 22:52:01 | 显示全部楼层
main只能有一个
回复

使用道具 举报

发表于 2006-7-10 21:24:51 | 显示全部楼层
重名
回复

使用道具 举报

发表于 2006-7-11 09:20:15 | 显示全部楼层
一般main函数是不需要返回值的
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-2 12:34 , Processed in 0.049882 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表