Debugger not typing

When I run the program in with the debugger it doesn’t let me type a guess. Not sure what’s going on.

It depends on where you put the breakpoint.

If you put the breakpoint before it asks the question, that line of code have not been executed yet.
You can step through the code using F10 in visual studio, and if you want to go inside of a function you can press F11 and it will take you there.

I hope that helps!

Privacy & Terms