ChatGPT解决这个技术问题 Extra ChatGPT

Preventing console window from closing on Visual Studio C/C++ Console application

This is a probably an embarasing question as no doubt the answer is blindingly obvious.

I've used Visual Studio for years, but this is the first time I've done any 'Console Application' development.

When I run my application the console window pops up, the program output appears and then the window closes as the application exits.

Is there a way to either keep it open until I have checked the output, or view the results after the window has closed?

Monodevelop does what you are expecting.

T
Tom

If you run without debugging (Ctrl+F5) then by default it prompts your to press return to close the window. If you want to use the debugger, you should put a breakpoint on the last line.


If you have a C++ app and Run Without Debugging and the console window still closes, you need to remember to explicitly set the Subsystem to Console under Configuration Properties / Linker / System. This can happen if you start with an Empty Project, which leaves Subsystem unset.
Didn't work for me :( The console window opens and shuts immediately, but the log pauses and waits for an additional press of F5
The correct answer is the one by @TrevorRobinson: Here is the expanded version if you have trouble finding out where the config properties are: Right-click on your project in Visual Studio > Properties > Configuration Properties > Linker > System, change Subsystem to "Console"
Trevor Robinson is right. If you start a blank project, and C++ item. You need to go to View->Property Manager->Property(wrench icon)->Config. Properties->Linker->System->Subsystem->in the pop-down menu, choose Console.
Im working on VS community 2017. ctrl+f5 not working, there is no Properties when I right click project, also the wrench icon is greyed out.
B
Bhargav Rao

Right click on your project

Properties > Configuration Properties > Linker > System

Select Console (/SUBSYSTEM:CONSOLE) in SubSystem option or you can just type Console in the text field!

Now try it...it should work


This worked for my VS2013 Express, but the accepted answer did not. Very strange, as the accepted answer has worked for all Visual Studio versions I've used in the past.
@MichaelCalvin You have to run with Ctrl + F5 after setting this, that's the kicker.
as @JonathanMee stated you still have run Ctrl + F5. This was already set in my visual studio 2015, so the first answer was the one that helped most.
This is indeed correct. The familiar CTRL+F5 will fail if you, say, add a new C++ file to an empty project.
Worked for me on Visual Studio Express 2015. Thanks.
C
Community

Starting from Visual Studio 2017 (15.9.4) there is an option:

Tools->Options->Debugging->Automatically close the console

The corresponding fragment from the Visual Studio documentation:

Automatically close the console when debugging stops: Tells Visual Studio to close the console at the end of a debugging session.


I just tested this in VS2017 and VS2019. It requires both setting the subsystem to CONSOLE and turning this option off. Having one or the other or neither closes the window automatically.
This still closes the window for me if I launch multiple projects from the same solution.
I feel like this is the right answer for VS 2017 and forward. Too bad it's not in older versions.
How do I change the subsystem for a Makefile project?
I discovered that if the debugging a C++ console application where command arguments redirect a file to standard input (stdin), the window will automatically close regardless of the setting of this option.
c
carefulnow1

Here is a way for C/C++:

#include <stdlib.h>

#ifdef _WIN32
    #define WINPAUSE system("pause")
#endif

Put this at the top of your program, and IF it is on a Windows system (#ifdef _WIN32), then it will create a macro called WINPAUSE. Whenever you want your program to pause, call WINPAUSE; and it will pause the program, using the DOS command. For other systems like Unix/Linux, the console should not quit on program exit anyway.


This method does not work in Visual C++ (unless you include some header?)
@wmac You have to include the windows.h header
I did not include any library or namespace but it run correctly, thanks a lot.
Worked for me on Visual Studio 2013 Express. :)
There is no need to create the macro--just call system("pause"). Surround it with #ifdef if you must use it on other systems.
p
pashaplus

Goto Debug Menu->Press StartWithoutDebugging


This isn't even an option in VS 2008 unless C# Development Environment was chosen. CTRL + F5 works though. You can also add this as a button to the toolbar via Tools > Customize.
If you have multiple projects set the relevant one as the startup project
C
Cheeso

If you're using .NET, put Console.ReadLine() before the end of the program.

It will wait for <ENTER>.


+1 - Either that or Console.ReadKey() to just wait for any key.
Weird, this has no effect in my app. It still closes without waiting for user input.
Then your code is most likely exiting before it reaches that point.
Not a great solution if you're running tests, as they'll cause your tests to hang and never exit.
A
Alex Shesterov

try to call getchar() right before main() returns.


Doesn't work in VS 2008 for a simple Hello Name console app. cout, cin, cout, getchar(), console still closes. What's the deal?
Try putting getchar() twice if you have a cout just before getchar(). getchar() expects a char and you are already giving it with cout... Let me know if this helps :)
F
Fantastory

(/SUBSYSTEM:CONSOLE) did not worked for my vs2013 (I already had it).

"run without debugging" is not an options, since I do not want to switch between debugging and seeing output.

I ended with

int main() {
  ...
#if _DEBUG
  LOG_INFO("end, press key to close");
  getchar();
#endif // _DEBUG
  return 0;
}

Solution used in qtcreator pre 2.6. Now while qt is growing, vs is going other way. As I remember, in vs2008 we did not need such tricks.


C
Community

Here's a solution that (1) doesn't require any code changes or breakpoints, and (2) pauses after program termination so that you can see everything that was printed. It will pause after either F5 or Ctrl+F5. The major downside is that on VS2013 Express (as tested), it doesn't load symbols, so debugging is very restricted.

Create a batch file. I called mine runthenpause.bat, with the following contents: %1 %2 %3 %4 %5 %6 %7 %8 %9 pause The first line will run whatever command you provide and up to eight arguments. The second line will... pause. Open the project properties | Configuration properties | Debugging. Change "Command Arguments" to $(TargetPath) (or whatever is in "Command"). Change "Command" to the full path to runthenpause.bat. Hit OK.

Now, when you run, runthenpause.bat will launch your application, and after your application has terminated, will pause for you to see the console output.

I will post an update if I figure out how to get the symbols loaded. I tried /Z7 per this but without success.


This still doesn't support debugging, but at least it addresses the issue of not being able to see output e.g. of VLD, in contrast to all other answers.
R
RafaelJan

just put as your last line of code:

system("pause");

t
theambient

add “| pause” in command arguments box under debugging section at project properties.


This would be a great solution if it worked. pause appears to only work in batch files, and while it receives input from your program on STDIN, it doesn't re-print that text. I tried replacing | with &&, but it had no effect -- presumably because it isn't executing with a command shell (cmd.exe).
G
Geo

You could run your executable from a command prompt. This way you could see all the output. Or, you could do something like this:

int a = 0;
scanf("%d",&a);

return YOUR_MAIN_CODE;

and this way the window would not close until you enter data for the a variable.


c
carefulnow1

Just press CNTRL + F5 to open it in an external command line window (Visual Studio does not have control over it).

If this doesn't work then add the following to the end of your code:

Console.WriteLine("Press any key to exit...");
Console.ReadKey();

This wait for you to press a key to close the terminal window once the code has reached the end.

If you want to do this in multiple places, put the above code in a method (e.g. private void Pause()) and call Pause() whenever a program reaches a possible end.


when i do the cntrl+f5 it opens then closes immediately? how do you fix that?
When I hit Ctrl + F5, nothing happens. It used to work for me but all on a sudden, it stopped working.
G
GhassanPL

A somewhat better solution:

atexit([] { system("PAUSE"); });

at the beginning of your program.

Pros:

can use std::exit()

can have multiple returns from main

you can run your program under the debugger

IDE independent (+ OS independent if you use the cin.sync(); cin.ignore(); trick instead of system("pause");)

Cons:

have to modify code

won't pause on std::terminate()

will still happen in your program outside of the IDE/debugger session; you can prevent this under Windows using:

extern "C" int __stdcall IsDebuggerPresent(void);
int main(int argc, char** argv) {
    if (IsDebuggerPresent())
        atexit([] {system("PAUSE"); });
    ...
}

Very bad advice.
Can you elaborate why?
In the case where one isn't debugging it does nothing useful, because in this case there is no problem to be solved. In VS just run the program with Ctrl+F5 and that's it, so there's no problem in VS, and in a command interpreter there's no problem, in short, there's no problem. And in the case where one is debugging and wants a stop added code to stop is not a more convenient solution than a breakpoint, and interferes in the situations where one doesn't want a stop.
A
AAEM

Either use:

cin.get();

or

system("pause");

Make sure to make either of them at the end of main() function and before the return statement.


V
Vladimir Salguero

You can also use this option

#include <conio.h> 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
   .
   .
   .
   getch(); 

   return 0;
}

0
0xsteve

In my case, i experienced this when i created an Empty C++ project on VS 2017 community edition. You will need to set the Subsystem to "Console (/SUBSYSTEM:CONSOLE)" under Configuration Properties.

Go to "View" then select "Property Manager" Right click on the project/solution and select "Property". This opens a Test property page Navigate to the linker then select "System" Click on "SubSystem" and a drop down appears Choose "Console (/SUBSYSTEM:CONSOLE)" Apply and save The next time you run your code with "CTRL +F5", you should see the output.


C
Caltor

Use Console.ReadLine() at the end of the program. This will keep the window open until you press the Enter key. See https://docs.microsoft.com/en-us/dotnet/api/system.console.readline for details.


u
user1323995

Sometimes a simple hack that doesnt alter your setup or code can be:

Set a breakpoint with F9, then execute Debug with F5.


J
Juan

Since running it from VS attaches the VS debugger, you can check for an attached debugger:

if (Debugger.IsAttached)
{
    Console.WriteLine("Debugger is attached. Press any key to exit.");
    Console.ReadKey();
}

I guess the only caveat is that it'll still pause if you attach any other debugger, but that may even be a wanted behavior.


K
KANJICODER

Visual Studio 2015, with imports. Because I hate when code examples don't give the needed imports.

#include <iostream>;

int main()
{
    getchar();
    return 0;
}

u
user11567957

Currently there is no way to do this with apps running in WSL2. However there are two work-arounds:

The debug window retains the contents of the WSL shell window that closed. The window remains open if your application returns a non-zero return code, so you could return non-zero in debug builds for example.


G
Gábor

It should be added that things have changed since then. On Windows 11 (probably 10, I can't check any more) the new Terminal app that now houses the various console, PowerShell and other sessions has its own settings regarding closing. Look for it in Settings > Defaults > Advanced > Profile termination behavior.

If it's set to close when a program exits with zero, then it will close, even if VS is told otherwise.


P
Priyanshu Singh

Go to Setting>Debug>Un-check close on end.

https://i.stack.imgur.com/ZVllg.png


OP's Q is about Visual Studio and not Code