Eclipse C / C ++不运行programm

时间:2017-07-31 14:11:30

标签: c eclipse gcc

您好我正在尝试运行标准的Hello World代码,但我在控制台中只得到了这个:

05:33:23 **** Incremental Build of configuration Debug for project Hello World ****
make all 
Building file: ../helloworld.c
Invoking: GCC C Compiler
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"helloworld.d" -MT"helloworld.d" -o "helloworld.o" "../helloworld.c"
Finished building: ../helloworld.c

Building target: Hello World.exe
Invoking: MinGW C Linker
gcc  -o "Hello World.exe"  ./helloworld.o   
Finished building target: Hello World.exe


05:33:25 Build Finished (took 2s.85ms)

我使用MinGW和Eclipse版本:Neon.1a版本(4.6.1) 构建ID:20161007-1200

#include <stdio.h>

int main()

{
printf("Hello World again!\n");

    return 0;
}

这就是我写的代码。

1 个答案:

答案 0 :(得分:0)

eclipse菜单行包含下拉菜单:'build',用于构建项目。

eclipse菜单行包含下拉菜单:run,用于运行可执行文件。