Question: C programming , could anyone help me come up with the flow chart for this Write a program to determine the length of bursts of
Write a program to determine the length of bursts of zero's in a list of N numbers stored in an array. The program should record the length of the bursts of zero's in another array. The program should then print the lengths of the bursts. Using this second array with the lengths of the bursts, it should also compute and print the following: the average length of the bursts, the minimum burst length, the maximum burst length, and the total number of zeros (the sum of the burst lengths). Your program should: Prompt the user for the size of the list (N). Then it should prompt the user to enter N numbers and store them into an array called list. Note, you should specify the maximum size of N allowed (based on how large you declare your array). Given N and list, your program should compute the lengths of the bursts of zeros and store them in an array called Burstlengths. After computing and storing the burst lengths you should terminate your Burstlengths array with a sentinel (-1). Use a for loop in this step. Given the Burstlengths array with a sentinel (-1), use a while loop to print the list of burst lengths. Format this nicely in a table with headings. Given the Burstlengths array with a sentinel (-1), compute and then print the following information: 1. 2. 3. 4. a. Average burst length b. Minimum burst length c. Maximum burst length d. Total number of zeros
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
