I have read the following statement.
The status argument given to _exit() defines the termination status of the process, which is available to the p
Inside the _exit(int status) function, the process notifies the parent process via SIGCHLD that that it is about to terminate, and the low-order 8 bits of status are made available to the parent. There are three ways in which the exit status is handled