C++ Programming/Code/Standard C Library/Functions/atexit
< C++ Programming < Code < Standard C Library < Functionsatexit
Syntax |
#include <cstdlib>
int atexit( void (*func)(void) );
|
The function atexit() causes the function pointed to by func to be called when the program terminates. You can make multiple calls to atexit() (at least 32, depending on your compiler) and those functions will be called in reverse order of their establishment. The return value of atexit() is zero upon success, and non-zero on failure.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.