2010-10-15 08:37:31 UTC
I would like to visualize the output in a simple Hello World but I see always this:
fatal error LNK1120: 1 unresolved externals
I surfed the web but I cannot figure out by myself..
I use VC++ 2010 Express, I created a new project with Win32 Project.
This is the code:
#include
using namespace std;
using std::cout;
int main()
{
cout<<"Hello World";
cin.get();
return 0;
}
Thanks