Write a C program that generates the Fibonacci sequence in the child process. The number of the sequence will be provided in the command line. For example if 10 is provided, the Fibonacci numbers less than 10 will be output by the child process. Because the parent and the child processes have their own copies of the data, it will be necessary for the child to output the sequence. Perform necessary error checking to ensure that a valid number is passed on the command line.