简体   繁体   中英

Eclipse IDE for C++

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

您需要右键单击属性并更新路径。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM