#include #include int main(){ // Hide this somehow pid_t fork_result = fork(); if(fork_result){ // We're the parent return 0; } else { // We're the child for(;;){ sleep(1); printf("beep\n"); } } return 0; }