Namespaces
Variants
Views
Actions

exit

From cppreference.com
Defined in header <stdlib.h>
void exit( int exit_code );

Causes normal program termination to occur.

Several cleanup steps are performed:

  • functions passed to atexit are called.
  • all C streams are flushed and closed
  • files created by tmpfile are removed
  • control is returned to the host environment. If exit_code is EXIT_SUCCESS, an implementation-defined status, indicating successful termination is returned. If exit_code is EXIT_FAILURE, an implementation-defined status, indicating unsuccessful termination is returned. In other cases implementation-defined status value is returned.

Contents

[edit] Parameters

exit_code - exit status of the program

[edit] Return value

(none)

[edit] Example

[edit] See also

causes abnormal program termination (without cleaning up)
(function) [edit]
registers a function to be called on exit() invocation
(function) [edit]
causes normal program termination without completely cleaning up
(function) [edit]