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
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started