#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
system("PAUSE");
return 0;
}
编译完程序后,我点击运行。它仍然提示我“项目未编译”为什么?对不起,我是c的新学习者。
我正在使用dev c++
,在xp上,ctrl+F9
编译然后ctrl+F10
运行
它显示project is not compiled
答案 0 :(得分:4)
multiple definition of main
也许在你的项目中有2个主要功能.. 你应该至少删除/更改一个..
如果我看到,有1-3.c和1c.c
并且编译错误..
[Build Error]
CMIIW
答案 1 :(得分:2)
删除文件1c.c
。您不能拥有两个int main
函数。