Site icon Learn C++

How To Exit A C Program In Power Shell

How To Exit A C Program In Power Shell

C is one of the most powerful programming languages and C program code can be edited and run by C or C++ IDEs and compilers. Using a fast and reliable C or C++ compiler and IDE for Windows is very important for beginners and professionals since it helps C/C++ developers in remembering which language features exist, how to use them, and even detect errors when we get them wrong.

You can run C and C++ codes in C++ compilers and build tools like C++ Builder. C++ Builder has a free C++ Builder Community Edition and C++ Builder Professional / Architect / Enterprise Versions. In this article we find out how we exit a C program in Power Shell? Is return 0; enough to exit successfully from your app? Let’s see with some short examples.

How to exit a C Program in Power Shell when running?

How to exit a C Program in Power Shell?

In C and C++ programs we use return to exit a program in C. If you are a beginner, then “Hello World” examples are good to understand features of the programming language. It is good to understand how to edit text, how to write in its format, how to compile and link, how to debug and execute, how to deploy or release. This full example below is a “Hello World” C example that can be run with C++ Builder.

[crayon-663ac002b18bb147480132/]

In this example above we define main() function as a integer (int) function, that means we should return a integer value. Here, we print a text with printf() function and then we wait to get a character input (key press) with getchar(); function, sometimes this is necessary to see results when running it. Then we exit and return 0; which means our main app successfully run and exit.

How to exit a C program without returning a value to the operating system?

In most C languages you do not need to define main() program as int. That means you don’t need to return 0. For example, this program will exit automatically,

[crayon-663ac002b18c1764567688/]

You can use return in the mid or end of your main program to exit from C program. For example,

[crayon-663ac002b18c3287407310/]

The example above has a void main() function. Some C compilers require the main function to be declared as void. Again, you do not need to use return; because it is a void function, as in the example below,

[crayon-663ac002b18c5964070779/]

We highly recommend you exit by using return function. In some compilers, If you want to exit from app you can use exit(); or abort(); functions, you need to add stdlib.h header. If you want to show the exit value in terms of coding, there are two definitions, EXIT_SUCCESS and EXIT_FAILURE are defined in stdlib.h. Include stdlib.h then;

You can exit from your app as below,
return EXIT_SUCCESS;
If this is about failure of your program then you can exit from your app as below,
return EXIT_FAILURE;

How to exit a C program in C++ Builder?

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.

RAD Studio C++ Builder 111

You can simply run your application in Debug mode and use the STOP button to exit from your C or C++ application.

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

Exit mobile version