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