![]() |
VOOZH | about |
exit() and _Exit() in C/C++ are very similar in functionality. However, there is one difference between exit() and _Exit() and it is that exit() function performs some cleaning before the termination of the program like connection termination, buffer flushes, etc.
In C, exit() terminates the calling process without executing the rest code which is after the exit() function call. It is defined in the <stdlib.h> header file.
void exit(int exit_code);
Parameters
Return Value
START
Explanation
In the above program, first, the printf statement is called and the value is printed. After that, the exit() function is called and it exits the execution immediately and it does not print the statement in the printf().
The _Exit() function in C/C++ gives normal termination of a program without performing any cleanup tasks. For example, it does not execute functions registered with atexit() function.
It is defined in the <stdlib.h> header file, which is part of the C Standard Library.
void _Exit(int exit_code);
Parameters
Return Value
No output
Let's understand the difference through an example.
Here, in the following program, we have used exit(),
Exiting
The code is immediately terminated after exit() is encountered. Now, if we replace exit with _Exit(),
No output