โ Back to Functions/Methods
Question 293
Function: Count Even Numbers in Array
Function: Count Even Numbers in Array
Write a functioncountEven(int arr[], int n)that returns how many of the firstnelements 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.