Looking for a software to practice c++ programing language in windows 7 64 bit

Solution
What is the program supposed to do? If it is just displaying some result then it is probably doing so, then closing the window when the program runs before you can read the display. You can:

1. Run from a command line rater than the IDE.

2. Debug rather than run.

3. Insert some call (e.g. Read a character) to delay the program.

USAFRet

Illustrious
Moderator


Then you have other issues going on.
What that might be, I couldn't begin to guess.
 

Shammikit

Honorable
Nov 30, 2013
35
0
10,580
This is what i get in the output screen:

'hello.exe': Loaded 'C:\Users\Shammi\Documents\Visual Studio 2010\Projects\hello\Debug\hello.exe', Symbols loaded.
'hello.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'hello.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'hello.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'hello.exe': Loaded 'C:\Windows\SysWOW64\msvcr100d.dll', Symbols loaded.
The program '[2484] hello.exe: Native' has exited with code 0 (0x0).
 

USAFRet

Illustrious
Moderator


Info about your PDB file.
http://msdn.microsoft.com/en-us/library/yd4f8bd1%28vs.71%29.aspx
 

Ijack

Distinguished
What is the program supposed to do? If it is just displaying some result then it is probably doing so, then closing the window when the program runs before you can read the display. You can:

1. Run from a command line rater than the IDE.

2. Debug rather than run.

3. Insert some call (e.g. Read a character) to delay the program.
 
Solution

Place a breakpoint on the last statement in your program, this will make it stop before closing the window.