Write a C program that forks two child processes. The parent process will print all prime numbers up to 229, the first child process will print the first 50 Fibonacci numbers, and the second child process will print factorial values for numbers 1 to 50. The parent process will for both children to terminate before it terminates. All numbers are to be printed one-per-line.