**** 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)
Hello I'm trying to run a simple helloworld program using C++ in Eclipse Helios, But I get the above error when I try to run the application program. Any help? Many thanks! Following is my program.
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello World!!!");
return EXIT_SUCCESS;
}