/* File: child.c A very simple program that we can use to demonstrate execve(). */ #include int main(int argc, char *argv[]) { fprintf (stdout, "This is the child process\n"); return 24; }