compiler says: Symbol 'std' could not be resolved Symbol 'cout' could not be resolved Symbol 'endl' could not be resolved
It seems that it is a C compiler, but I really installed everything listed in CDT.
I tried searching but it's all about windows. I've installed all the plugins in CDT.
Something strange is that the file was once compiled and printed "Hello world". I can't understand what is happening.
My os is osx lion (10.7.3). Hope someone can help me! Thanks!
My eclipse version is 3.7. My cdt version is 8.0.0.
Here's the code for helloworld.cpp
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}