Question: Write in C. Write a function that takes an array of integers, its size and the key as parameters and prints the indices of the
Write in C.
Write a function that takes an array of integers, its size and the key as parameters and prints the indices of the first and last occurrences of the key. The function also prints the total number of times the key appears in the array. A sample output is shown below. Write your program using a symbolic constant SIZE so that it can be easily changed to any size array. In the main, fill the array with random values between 1 and 5 using the random function. The main function should ask the user to enter a key. Array data 1, 2, 5, 4, 2, 3, 3, 4, 5, 2. Enter the key: 2 First occurrence at index:1 Last occurrence at index: 9 Total number of occurrences: 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
