abort

From cppreference.com
< c‎ | program
Defined in header <stdlib.h>
void abort();

Causes abnormal program termination unless SIGABRT is being caught by a signal handler passed to signal and the handler does not return.

Functions passed to atexit() are not called. Whether open resources such as files are closed is implementation defined. Implementation defined status is returned to the host environment that indicates unsuccessful execution.

Contents

[edit] Parameters

(none)

[edit] Return value

(none)

[edit] Example

#include <stdio.h>      /* FILE, fopen, fclose, fprintf */
#include <stdlib.h>     /* abort */
 
int main(void) 
{
    FILE *fp = fopen("data.txt","r");
    if (fp == NULL) {
       fprintf(stderr, "error opening file data.txt in function main()\n");
       abort();
    }
 
    /* Normal processing continues here. */
    fclose(fp);
    printf("Normal Return\n");
    return 0;
}

Output:

error opening file data.txt in function main()

[edit] See also

causes normal program termination with cleaning up
(function)
registers a function to be called on exit() invocation
(function)
causes normal program termination without completely cleaning up
(function)
C++ documentation for abort