I'm trying desperately to learn C++, with that being said... When I debug:
c++ Code:
#include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; }
a window pops up and disappears and in my build menu this comes up:
Why isn't hello world being printed on a command prompt?Loaded 'C:\Documents and Settings\PC #6\My Documents\Visual Studio 2010\Projects\unique\Debug\unique.exe', Symbols loaded.
Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
Loaded 'C:\WINDOWS\system32\msvcp100d.dll', Cannot find or open the PDB file
Loaded 'C:\WINDOWS\system32\msvcr100d.dll', Cannot find or open the PDB file
The program '[1912] unique.exe: Native' has exited with code 0 (0x0).


Reply With Quote

