#include #include void main(void) { if (fork()) printf("I am the parent\n"); else printf("I am the child\n"); printf("I am the walrus\n"); }