I tried to test something really simple in VS 2012, like printing a message using C++, but it wouldn't compile.
It tells me that the iostream
file cannot be opened!!!
The error message is "cannot open source file "iostream""
The code is as follows
#include <iostream>
using namespace std;
int main ()
{
cout << "any thing!!" << endl ;
return 0;
}
I checked in my hard drive, and i found the file, but it looks like that the VS 2012 can't read it or doesn't see it at all.
It also wouldn't let me compile any old projects that I've done.