Question: Write a multithreaded C/C++ program that generates the Fibonacci sequence using Pthread. The program should work as follows. The user will enter on the command
Write a multithreaded C/C++ program that generates the Fibonacci sequence using Pthread. The program should work as follows. The user will enter on the command line the number of Fibonacci numbers that the program is to generate. The program will then create a separate thread (child thread) that will generate the Fibonacci numbers, placing the sequence in a buffer/array (dynamically allocated in child thread).
When the thread finishes execution, it returns the array to the calling/parent thread. Because the parent/calling thread cannot begin outputting the Fibonacci sequence until the child thread finishes, this will require having the parent/calling thread wait for the child thread to complete. You need to write the thread function and the main function.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
