Use of _Exit function in C/C++ with (exit vs _Exit)
The _Exit function terminates the process normally without completely cleaning the resources. It defined in the ‘stdlib.h’ header file, so you have to include the header file before using it. The _Exit function does not invoke the functions registered with at_quick_exit and atexit. Syntax _Exit in C: //Syntax of _Exit void _Exit(int status); (since C99 […]
Use of _Exit function in C/C++ with (exit vs _Exit) Read More »