pid_t getpid(void);
pid_t getppid(void);
pid_t fork(void);
pid_t waitpid(pid_t pid, int *wstatus, int options);
int execv(const char *path, char *const argv[]);
Function, Parameter(s), Return ValueDescriptionfork()function namenonen/aReturns PID, 0, or -1The calling process receives the ...