#include #include #include /* Child process executes this code */ main(int argc, char *argv[]) { printf("I am the child process after exec\n"); printf("Child: I am extiting with status 9\n"); exit(9); }