Lately, I've been trying to learn C++ from this website. Unfortunately whenever I try to run one of the code samples, I see that program open for about a half second and then immediately close. Is there any way to stop the program from closing immediately so that I can see the fruits of my effort? Thanks in advance.
|
|
Edit: As Charles Bailey rightly points out in a comment below, this won't work if there are characters buffered in That said, I'll leave this here and maybe someone else will find it useful. I've used it a lot as a quick hack of sorts when writing tests during development. At the end of your
This will get a single character from You need to |
|||||||||||||||||||||
|
|
If you are using Visual Studio and you are starting the console application out of the IDE: pressing CTRL-F5 (start without debugging) will start the application and keep the console window open until you press any key. |
|||||
|
|
The solution by James works for all Platforms. Alternatively on
This will run the |
|||||||||||||||||
|
|
Why not just run the program from a console ie run the program from cmd.exe if you're using Windows. That way the window stays open after the program finishes. [EDIT]: When I use KDevelop4 there is a fully fledged instance of Bash (a Linux CLI) running in a tab at the bottom of the IDE. Which is what I use in these sort of circumstances. |
|||||||||||||||||||||
|
|
There is probably a much easier and cleaner way of keeping the console open than adding more code to your program. Are you using Microsoft's Visual C++ 2010 Express or something similar? If so, take a look at this MSDN thread. Likely your IDE (Visual C++ 2010 Express is an IDE, if I'm not wrong) is set to close the console; in fact, an "Empty Project" in Visual C++ 2010 closes the console by default! To change this, do as the Microsoft Moderator suggested:
This solved the problem for me. Good luck with programming! |
|||||
|
|
|
I usually just put a breakpoint on |
|||
|
|
|
If you run your code from a competent IDE, such as Code::Blocks, the IDE will manage the console it uses to run the code, keeping it open when the application closes. You don't want to add special code to keep the console open, because this will prevent it functioning correctly when you use it for real, outside of the IDE. |
|||
|
|
|
Just add the following at the end of your program. It will try to capture some form of user input thus it stops the console from closing automatically.
|
||||
|
|
|
If you are actually debugging your application in Visual C++, press F5 or the green triangle on the toolbar. If you aren't really debugging it (you have no breakpoints set), press Ctrl+F5 or choose Start Without Debugging on the menus (it's usually on the Debug menu, which I agree is confusing.) It will be a little faster, and more importantly to you, will pause at the end without you having to change your code. Alternatively, open a command prompt, navigate to the folder where your exe is, and run it by typing its name. That way when it's finished running the command prompt doesn't close and you can see the output. I prefer both of these methods to adding code that stops the app just as its finished. |
|||
|
|
|
Okay I'm guessing you are on Windows using Visual Studio... why? Well because if you are on some sort of Linux OS then you'd probably be running it from the console. Anyways, you can add crap to the end of your program like others are suggesting, or you can just hit CTRL + F5 (start without debugging) and Visual Studio will leave the console up once complete. Another option if you want to run the Debug version and not add crap to your code is to open the console window (Start -> Run -> cmd) and navigate to your Debug output directory. Then, just enter the name of your executable and it will run your debug program in the console. You can then use Visual Studio's attach to process or something if you really want to. |
|||
|
|
|
Add the following lines before any
|
|||
|
|
|
See if your IDE has a checkbox in project setting to keep the window open after the program terminates. If not, use |
|||
|
|
|
This seems to work well:
If you clear the buffer first it won't be a problem when you read the next one.
For some reason |
|||
|
|
All you have to do set a variable for x then just type this in before the return 0;
|
||||
|
|
|
Before the end of your code insert this line: system("pause"); This will keep the console until you hit a key.
|
||||
|
|
|
you could also stick
or
at the end |
|||||||
|
|
you can even declare an integer at the beginning of your |
||||
|
|
|
You could always just create a batch file. For example if your program is calles helloworld.exe some code would be: @echo off :1 cls call helloworld.exe pause >nul goto :1 |
|||
|
|