Choose Category
//Exit Program without using exit() function #include <stdlib.h> #include <stdio.h> int main() { int a=-1; //printf("Exit Program without using exit() function"); if(a<0) { _Exit(0); } return 0; }