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