I downloaded Bruce Eckel's C++ manual and started going through it.
I'm on chapter 2 now and wrote the first program using Visual Studio.NET
when I compile the source code, I get the following error...
fatal error C1010: unexpected end of file while looking for precompiled
header directive
Here is my source
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World "
<< 8 << " Today!" << endl;
}
I can't figure out whats wrong here, must be something Visual Studio doesn't
like...
Thanks
I'm on chapter 2 now and wrote the first program using Visual Studio.NET
when I compile the source code, I get the following error...
fatal error C1010: unexpected end of file while looking for precompiled
header directive
Here is my source
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World "
<< 8 << " Today!" << endl;
}
I can't figure out whats wrong here, must be something Visual Studio doesn't
like...
Thanks