0

So i just downloaded Eclipse kepler for C and C++ and then i tried to make a simple HelloWorld app,

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!!!" << endl; // prints Hello World!!!
    return 0;
}

but i got an error saying:

Program "g++" not found in PATH
Program "gcc" not found in PATH
Program "make" not found in PATH
Symbol 'cout' could not be resolved
Symbol 'endl' could not be resolved
Symbol 'std' could not be resolved
Deanie
  • 2,316
  • 2
  • 19
  • 35
HansFrank
  • 25
  • 1
  • 6

1 Answers1

-1

You need to right click on properties and update the paths.