• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Very dumb C++ programming questions.

Joined
10/17/10
Messages
74
Points
268
So I just started learning C++ and tried a few programs myself.
I was using Xcode on mac, which is so user friendly, and everything was fine.
Then I start programming on my laptop using visual studio, everything went alright, but my question is every time the program done running, it just shuts off, and since I am running some very basic programs, I can only see a black command window flashes once. On the mac, the command windows will just stay on the screen.
Any thoughts as to how to make the cmd window stay??
Thanks!!!
 
Just add some code at the end of your main() that will wait for input, i.e. cin.get()
 
Back
Top