โ Back to Functions
Question 407
Sum of an Array
Sum of an Array
Write a functionint sumArray(int arr[], int size)that returns the sum of the firstsizeelements ofarr. Inmainan array{1, 2, 3, 4, 5}is given; callsumArray(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.