exit() vs _Exit() in C/C++
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 termination of the program like connection termination, buffer flushes etc.
exit()
In C, exit() terminates the calling process without executing the rest code which is after the exit() function.
Syntax:
void exit(int exit_code); // The exit_code is the value which is returned to parent process
Example:
C
// C program to illustrate exit() function. #include <stdio.h> #include <stdlib.h> // Driver Code int main( void ) { printf ( "START" ); exit (0); // The program is terminated here // This line is not printed printf ( "End of program" ); } |
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().
_Exit()
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.
Syntax:
void _Exit(int exit_code); // Here the exit_code represent the exit // status of the program which can be // 0 or non-zero.
Return Value: The _Exit() function returns nothing.
CPP
// C++ program to demonstrate use of _Exit() #include <stdio.h> #include <stdlib.h> // Driver Code int main( void ) { int exit_code = 10; printf ( "Termination using _Exit" ); _Exit(exit_code); } |
Here, the output will be nothing.
Let’s understand the difference through an example. Here, in the following program, we have used exit(),
CPP
// A C++ program to show difference // between exit() and _Exit() #include <bits/stdc++.h> using namespace std; void fun( void ) { cout << "Exiting" ; } // Driver Code int main() { atexit (fun); exit (10); } |
Exiting
The code is immediately terminated after exit() is encountered. Now, if we replace exit with _Exit(),
CPP
// A C++ program to show difference // between exit() and _Exit() #include <bits/stdc++.h> using namespace std; void fun( void ) { cout << "Exiting" ; } int main() { atexit (fun); _Exit(10); } |
There is no output and nothing is printed.
This article is contributed by Bishal Kumar Dubey. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Please Login to comment...