#include #include int main() { printf("Hello "); if (fork() == 0) { printf("World\n"); } return (0); }