using the exit function

Solutions on MaxInterview for using the exit function by the best coders in the world

showing results for - "using the exit function"
Thomas
05 Jan 2019
1// C++ program to demonstrate use of _Exit()
2#include <stdio.h>
3#include <stdlib.h>
4int main(void)
5{
6    int exit_code = 10;
7    printf("Termination using _Exit");
8    _Exit(exit_code);
9  
10}
11
similar questions
queries leading to this page
using the exit function