CC++Introduction to C++Learn C++

How To Stop A C Program In Terminal

C++ is one of the most perennially powerful and popular programming languages. Using a fast and reliable compiler and C or C++ IDE to create your C program and applications is very important for both beginners and professionals alike since it helps developers in remembering which language features exist, how to use them, and even detect errors when we get them wrong.

But writing a C program is more than just the skill of getting the app to run in the first place. It’s important to know how to make the app behave properly within the environment of the computer or device on which it is running. Proper behavior isn’t just about how and where we read and store data but also slightly less obvious things like making sure our app terminates properly under various conditions. The instructions in this article apply to a C++ or C program. So, how we can end a running C or C++ app?

How to Stop a C program in Terminal when running?

  • If you run your C or C++ app in Command Prompt, and it is in loop or you want to end this running program, just press Ctrl+C to end the app. This is default in Windows and Linux console apps, in addition Mac-OS console apps too.
  • If you are running C or C++ app in the C++ IDE, there is a STOP button to stop the application from running. You can use the PAUSE button to Pause and continue too.
  • In Windows, if you are not able to end your C++ application, the last chance is to use Task Manager. Right-click on the taskbar – or Start button in Windows 11 and then choose Task Manager. In the Task Manager, find your C++ app listed and right-click on it then select “end task”.

How to correctly end a C++ app which is executing a loop?

If you are a developer and your want to stop app you can use return 0; to end your application. If you want to end the loop of a program only in Terminal with Ctrl+C, you must use a signal handler. Let’s consider you have a lot of calculations in a loop, and you want to end and exit from your loop and you want to continue to other command lines as below,

If you run this example above and you press Ctrl+C this will end all the application, You will not see the “Safe to exit” prompt and pause operation. How can you exit a C++ loop but not the main()? Todo this, you should create a signal handler i.e. sighandler() that changes a parameter check i.e. loop. Then you should set this signalhandler by the signal() command as below,

How to end a C++ app which is running in C++ Builder?

cbuider studio final icons 64 9744851 4964591 6127446 4112068 5843153

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, macOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. C++ Builder comes with Rapid Application Development Studio, also known as RAD Studio, and C++ Builder is one of the most professional IDE’s that work under RAD Studio. It is the oldest IDE (it began as Borland TurboC in 1990 and was later renamed Borland C++ Builder). Under the Embarcadero brand, multiple new versions have been released, year upon year, along with great new features, updates, and support to ensure that your apps can stay current. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs.

How To Stop A C Program In Terminal The RAD Studio Welcome window
The Latest RAD Studio C++ Builder Welcome Screen

You can simply run your application in Debug mode and use STOP button to exit from your C or C++ application. If you run your application in release mode and you are not able to stop your app via window close buttons, you must use Task Manager in Windows and you should end your application by the right click and kill process operations.

You can download the free C++ Builder Community Edition here: https://www.embarcadero.com/products/cbuilder/starter.

Professional developers can use the Professional, Architect or Enterprise versions of C++ Builder. Please visit https://www.embarcadero.com/products/cbuilder.

Download RAD Studio 11 Now

See What’s New in RAD Studio 11

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++17Language FeatureLearn C++

How To Use Skia Shader SkSL Shading Language Code in C++ Builder?

Artificial Intelligence TechC++C++17C++20Learn C++

How To Create Simple Generative AI Code In C++

C++C++17Language FeatureLearn C++

How To Use The SVG Image Format With Skia In C++ Builder

C++C++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?