I'm trying to compile a simple "Hello World!" That I made in C++
//============================================================================
// Name : C++.cpp
// Author :
// Version :
// Copyright : All rights reserved.
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}
but I always get:
Unresolved inclusion on #include <iostream>
Symbol 'std' could not be resolved
Symbol 'cout' could not be resolved
Symbol 'endl' could not be resolved
I think I installed everything it needed (Cygwin64 make, gdb and gcc). What am I missing?