how a process is executed and terminated code example
Example: process creation and process termination
#include <sys/types.h>
#include <unistd.h>
pid_t fork(void);
#include <sys/types.h>
#include <unistd.h>
pid_t fork(void);