Question: Write a templated function countInList that will take in an array of any type, the length of the array and a value of the same

Write a templated function countInList that will take in an array of any type, the length of the array and a value of the same type as the array. It should count the number of times the value appears in the array and return that number

code:

#include

using namespace std;

//Do not modify anything on or above the line below this //YOUR_CODE_BELOW

//YOUR_CODE

//YOUR_CODE_ABOVE //Do not modify anything on or below the line above this

int main() { int nums[] = {4, 1, 2, 5, 2, 6, 2}; char letters[] = {'A', 'B', 'A', 'B'}; string words[] = {"apple", "banana", "apple"};

cout << countInList(nums, 7, 2) << endl; cout << countInList(letters, 4, 'A') << endl; cout << countInList(words, 3, "banana") << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!