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