Write a function that takes an array of integers, its size and the key as parame
ID: 3915522 • Letter: W
Question
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
write in c language
Explanation / Answer
#include #include #include #define SIZE 10 void find_key(int arr[], int size, int key) { int i, count = 0, first = -1, last = -1; for(i = 0; iRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.