Task - Using pointers to process arrays (C Languaage) In a TV show, each minute can be either interesting or boring. Assume that if 7 consecutive minutes are boring, then an average viewer will stop watching the show. Write a C program that calculates how many minutes that an average viewer will watch a TV show, given the interesting minutes. Assume the TV shows are 45 minutes long. Requirements Name your program project4_minutes.c. Follow the format of the examples below. The program will read in the number of interesting minutes, then read in the interesting minutes. The program should include the following function. Do not modify the function prototype. int find_minute(int *minutes, int n); minutes represents the input array for interesting minutes, n is the length of the array (the number of interesting minutes). The function returns the how many minutes an average viewer will watch the show. This function should use pointer arithmetic– not subscripting – to visit array elements. In other words, eliminate the loop index variables and all use of the [] operator in the function. In the main function, call the find_minute function and display the result. Pointer arithmetic is NOT required in the main function. Examples (your program must follow this format precisely) Example #1 Enter the number of interesting minutes: 3 Enter the interesting minutes: 7 13 28 Output: 20 Note: In the first example, minutes 14, 15, 16, 17, 18, 19, 20 are all boring and thus an average viewer will stop watching after the 20th minute. So, the average viewer will watch for 20 minutes. Example #2 Enter the number of interesting minutes: 3 Enter the interesting minutes: 7 13 18 Output: 25 Note: In the second example, minutes 19, 20, 21, 22, 23, 24, 25 are all boring and thus an average viewer will stop watching after the 25th minute. So, the average viewer will watch for 25 minutes. Example #3 Enter the number of interesting minutes: 6 Enter the interesting minutes: 9 13 28 32 38 42 Output: 7 Note: In the third example, minutes 1, 2, 3, 4, 5, 6, 7 are all boring and thus an average viewer will stop watching after the 7th minute. So, the average viewer will watch for 7 minutes. Example #4 Enter the number of interesting minutes: 6 Enter the interesting minutes: 5 12 18 24 31 38 Output: 45  Note: In the fourth example, there are no consecutive 7 boring minutes So, the average viewer will watch for the whole 45 minutes.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 8PP: (Data processing) A bank’s customer records are to be stored in a file and read into a set of arrays...
icon
Related questions
Question

Task - Using pointers to process arrays (C Languaage)

In a TV show, each minute can be either interesting or boring. Assume that if 7 consecutive minutes are boring, then an average viewer will stop watching the show. Write a C program that calculates how many minutes that an average viewer will watch a TV show, given the interesting minutes. Assume the TV shows are 45 minutes long.

Requirements

  • Name your program project4_minutes.c.
  • Follow the format of the examples below.
  • The program will read in the number of interesting minutes, then read in the interesting minutes.
  • The program should include the following function. Do not modify the function prototype.

int find_minute(int *minutes, int n);

    • minutes represents the input array for interesting minutes, n is the length of the array (the number of interesting minutes). The function returns the how many minutes an average viewer will watch the show.
    • This function should use pointer arithmetic– not subscripting – to visit array elements. In other words, eliminate the loop index variables and all use of the [] operator in the function.
  • In the main function, call the find_minute function and display the result.
  • Pointer arithmetic is NOT required in the main function.

Examples (your program must follow this format precisely)

Example #1

Enter the number of interesting minutes: 3
Enter the interesting minutes: 7 13 28
Output: 20

Note: In the first example, minutes 14, 15, 16, 17, 18, 19, 20 are all boring and thus an average viewer will stop watching after the 20th minute. So, the average viewer will watch for 20 minutes.

Example #2

Enter the number of interesting minutes: 3
Enter the interesting minutes: 7 13 18
Output: 25

Note: In the second example, minutes 19, 20, 21, 22, 23, 24, 25 are all boring and thus an average viewer will stop watching after the 25th minute. So, the average viewer will watch for 25 minutes.

Example #3

Enter the number of interesting minutes: 6
Enter the interesting minutes: 9 13 28 32 38 42
Output: 7

Note: In the third example, minutes 1, 2, 3, 4, 5, 6, 7 are all boring and thus an average viewer will stop watching after the 7th minute. So, the average viewer will watch for 7 minutes.

Example #4

Enter the number of interesting minutes: 6
Enter the interesting minutes: 5 12 18 24 31 38
Output: 45 

Note: In the fourth example, there are no consecutive 7 boring minutes So, the average viewer will watch for the whole 45 minutes. 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 5 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage