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

Lambda two tables and three tables inner join code samples