Answers for "Using the _Exit function"

C
0

Using the _Exit function

// C++ program to demonstrate use of _Exit()
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
    int exit_code = 10;
    printf("Termination using _Exit");
    _Exit(exit_code);
  
}
Posted by: Guest on August-24-2021

Code answers related to "Using the _Exit function"

Code answers related to "C"

Browse Popular Code Answers by Language