**** Build of configuration Default for project Hello ****
(Cannot run program "make" (in directory "C:\Users\A234049\workspaceHelios\Hello"): CreateProcess error=2, The system cannot find the file specified)
您好我正在尝试使用Eclipse Helios中的C ++运行一个简单的helloworld程序,但是当我尝试运行应用程序时出现上述错误。 有帮助吗?非常感谢! 以下是我的计划。
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello World!!!");
return EXIT_SUCCESS;
}