โ Back to Functions/Methods
Question 297
Function: Count Occurrences in Array
Function: Count Occurrences in Array
Write a functioncountOccurrences(int arr[], int n, int target)that returns how many timestargetappears among the firstnelements. Use it on{1, 2, 2, 3, 2, 4}with target2and print the count: 3 Print with%d.
Expected Output:
3
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.