#include "myhdr.h" main () { int pid; printf ("just one process so far \n"); pid = fork(); if (pid == 0) printf ("I am the child \n"); else if (pid > 0) printf ("I am the parent \n"); else printf ("fork failed \n");}