CJCoding With Joseph

Function: Count Even Numbers in Array

Write a function countEven(int arr[], int n) that returns how many of the first n elements are even. Use it on {1, 2, 3, 4, 5, 6, 7, 8} and print the count:

4

Print with %d.

Expected Output:

4
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.