#include <iostream>
int main()
{
usingnamespace std;
cout << " You have succeeded with this place_holder " << endl << endl;
cout << " Please press any key to continue " ;
cin.get();
return 0;
}
and I'm getting:
1 2 3 4 5
1> Place_holder.cpp
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocnum(133): error C2857: '#include' statement specified
with the /YcStdAfx.h command-line option was not found in the source file
1>
1>Build FAILED.
And I don't know why. This program is set up the same many others that worked fine. How can I correct this error?