Quote:
|
My biggest concern is nothing being able to see any output of any program i write.
|
If you are just double clicking the executable, the OS owns the output window, not you. It executes your program, displays your output to a window, and then promptly closes it before you have a chance to examine it.
Open a command prompt, navigate to your program, and run it from there. You should see the output, provided your program does what you think it should.
Your other option is to add a line of code to your program causing the window to stay open, like waiting for the user to enter a character.