C Program to abort your program immediately


#include <stdlib.h>
#include <stdio.h>

main()
  {
    abort();
    
    //return 0;
    getch();
  }

Comments

Popular posts from this blog

Customize User's Profile in ASP.NET Identity System

Migrating database from ASP.NET Identity to ASP.NET Core Identity