#include #include void main(void) { printf("OK - the code is here, but you really don't want to run it!\n"); printf("This may fill up the process table and crash your computer\n"); printf("before you can stop it!!!\n"); printf("May the force be with you.\n"); exit(); while (fork()) { printf("I am the parent %d\n",getpid()); } printf("I am the child %d\n",getpid()); }