Table of Contents
Previous Section Next Section

_Exit

#include <stdlib.h>void _Exit(int exit_code);

_Exit( ) was added by C99.

The _Exit( ) function is similar to exit( ) except for the following:

Related functions are atexit( ), abort( ), and exit( ).


Table of Contents
Previous Section Next Section