1
#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

在此处输入图像描述

4

2 回答 2

4
multiple definition of main

也许在您的项目中有2个主要功能..您至少应该删除/更改一个..

如果我看到,有 1-3.c 和 1c.c

并且编译是错误的..

[Build Error]

CMIIW

于 2012-05-09T03:31:02.183 回答
2

删除文件1c.c。你不能有两个int main功能。

于 2012-05-09T03:36:54.577 回答