I dont know how i did it before, but i dont quite remember how to get started on a win 32 console program for Microsoft Visual 2010 ultimate edition.
could someone give a basic idea of where to start for a blank template?
I did:
New project,
Win 32 console app,
Empty template
and when i get in there it wants somethink like
#include "stdafx.h" //or some weird thing like that.
Error 1 error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include ""' to your source?
//this for example won't compile
#include <iostream>
using namespace std;
int main()
{
cout << "This should work but it doesn't."
return 0;
}
}
sorry, i know this is a dumb question, but i tried a few diff configurations and i cannot figure this out