/* A fork bomb. */ #include #include #include int main() { int i; int fv; for (i = 0; i < 4; i++) { fv = fork(); printf("Process: %8d -- i = %d\n", getpid(), i); fflush(stdout); } return 0; }