CJCoding With Joseph

Sum of an Array

Write a function int sumArray(int arr[], int size) that returns the sum of the first size elements of arr. In main an array {1, 2, 3, 4, 5} is given; call sumArray(arr, 5) and print the result:

15

Expected Output:

15
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.