Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

atexit - Exit from the program while it cause function calling problem in C++

//ATEXIT() FUNCTION

#include<iostream.h>
#include<stdlib.h>
void function(void)
{
cout<<"function is called";
}
void main()
{
atexit(function);
}