![a. parent received the input through the command line using: int main(int argc, char *argv[]), dont forget o use (atoi) to t](https://media.cheggcdn.com/media/c49/c4902342-058c-4a6a-825a-a1e82dad64fc/phpkl28Zr.png)

Clanguagea. parent received the input through the command line using: int main(int argc, char *argv[]), don't forget o use (atoi) to transform the char 7 into the integer. b. child computes the sequence and stored the result in an array. C. parent prints the sequence The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8, .... Formally, it can be expressed as: fibc = 0 fib1 = 1 fibn = fibn-1 + fibn-2 Write a multithreaded program that generates the Fibonacci series using Pthreads thread library. This program should work as follows: The user will enter on the command line the number of Fibonacci numbers that the program is to generate (* in this case 7 *). The program will then create a separate thread that will generate the Fibonacci sequence, placing the sequence in data- code (section) that is shared by the threads (an array is probably the most convenient data structure). When the thread finishes execution, the parent thread will output the sequence generated by the child thread. Because the parent thread cannot begin outputting the Fibonacci sequence until the child thread finishes, this will require having the parent thread wait for the child thread. NOTE: Just for the condition of this semester, use the fix value of 7 (so, the program doesn't have to work for any input, namely just for the number 7), in that way you can use an array of size 7 to store the Fibonacci series (child thread has to generate this sequence), so you don't need to use dynamic memory allocation Advise: 1. EASY, just declare the array where parent and child can access it. (code-data section, i.e., global array, check slides examples) 2. Don't forget to lock the critical section or share variable, namely the array 3. For thread synchronization use LOCKS Show transcribed image text a. parent received the input through the command line using: int main(int argc, char *argv[]), don't forget o use (atoi) to transform the char 7 into the integer. b. child computes the sequence and stored the result in an array. C. parent prints the sequence The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8, .... Formally, it can be expressed as: fibc = 0 fib1 = 1 fibn = fibn-1 + fibn-2 Write a multithreaded program that generates the Fibonacci series using Pthreads thread library. This program should work as follows: The user will enter on the command line the number of Fibonacci numbers that the program is to generate (* in this case 7 *). The program will then create a separate thread that will generate the Fibonacci sequence, placing the sequence in data- code (section) that is shared by the threads (an array is probably the most convenient data structure). When the thread finishes execution, the parent thread will output the sequence generated by the child thread. Because the parent thread cannot begin outputting the Fibonacci sequence until the child thread finishes, this will require having the parent thread wait for the child thread.
NOTE: Just for the condition of this semester, use the fix value of 7 (so, the program doesn't have to work for any input, namely just for the number 7), in that way you can use an array of size 7 to store the Fibonacci series (child thread has to generate this sequence), so you don't need to use dynamic memory allocation Advise: 1. EASY, just declare the array where parent and child can access it. (code-data section, i.e., global array, check slides examples) 2. Don't forget to lock the critical section or share variable, namely the array 3. For thread synchronization use LOCKS