Use of abort function in C/C++ with Examples
The abort function terminates the execution of a current process abnormally. When the abort function is called it raises the SIGABRT signal to cause abnormal termination of the current process. The abort function defined in the ‘stdlib.h’ header file, so you have to include the header file before using it. Syntax abort in C: //Syntax […]
Use of abort function in C/C++ with Examples Read More »