CJCoding With Joseph

Function: Count Occurrences in Array

Write a function countOccurrences(int arr[], int n, int target) that returns how many times target appears among the first n elements. Use it on {1, 2, 2, 3, 2, 4} with target 2 and 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.