Use of exit function in C/C++ with Examples
The exit function terminates the process normally also it performs the regular cleanup for terminating programs. It defined in the ‘stdlib.h’ header file, so you have to include the header file before using it. When the exit function invokes it performs several cleanup operations, these are the following. Call the functions registered by the atexit […]
Use of exit function in C/C++ with Examples Read More »