Introducing Radical.sh

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

abort - Exit the program without exit() function in C

Abort function will generates a signal SIGABRT, which causes the program to terminate from the working mode.
//abort - Exit the program without exit() function
#include<stdio.h>
#include<conio.h>
int main ()
{       char *f="Forget Code Working";
    FILE * p;
     //  printf("abort - Exit the program without exit() function");
    p= fopen ("ForgetFile.txt","r");

    if (p!= NULL)
    {
        printf("%s",f);
    }
    else
    {
        fputs ("error opening file\n",stderr);
        abort();
    }        
    fclose (p);
    return 0;
}