Hi guys!
I did my Hello World! program in Visual Studio 2010 C++, it does work all ok (except that if I enter 2 times it will close, it's normal?)
But there is a little "error message" or whatever that appear in the debug log:
'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
What does that mean?
You can see my code here:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!" << endl;
cin.clear();
cin.ignore(255, '\n');
cin.get();
return 0;
}
Thanks!
Niko