abort()
Syntax:
#include <stdlib.h> void abort( void );
Description:
The function abort() terminates the current program. Depending on the implementation, the return value can indicate failure.
Related Topics:
exit() and atexit()
#include <stdlib.h> void abort( void );