#include #include #include int main() { int dummy; if (fork() == 0) { sleep(1); printf("I will be a zombie process.\n"); } else { wait(&dummy); } exit(0); }