I can\'t get intellisense to work. Even if I start with an empty project and add just one file to it with only an include for iostream and an int main()>
iostream
int main()>
Just throwing this out there, you are using namespace std? eg:
namespace
std
std::cout.
because intellisense wont work if it doesn't see cout
cout
edit: I over looked that error message so this isn't the case but leaving the answer in case it might help someone down the line.