In this practice class, we will study the use of the fork() and execlp() functions in combination. See the skeleton code given here. – Skeleton C Program: fork + execlp #include #include int main (int argo, char *argv[]) { int pid; /* fork another process */ pid = fork(); if (pid < 0) { /* error occurred */ fprintf (stderr, "Fork Failed"); exit (-1); } else if (pid == 0) { /* child process */ execlp ("/bin/ls", "ls", NULL); } else { /* parent process