Library:   stdlib.h
	Prototype: int atexit(void (*function)(void));
	Syntax:    void End(void);
        
                   main()
                   {
                     atexit(End);
                   }
                   void End(void)
                   {
                     printf("The End\n");
                   }
 example 
program.
 example 
program.
 exit function.
 exit function.
 abort function.
 abort function.
| Top | Master Index | Keywords | Functions |