Write a function called arraySum() that takes two arguments: an integer array and the number of elements in the array. Have the function return as its result the sum of the elements in the array.
1
Expert's answer
2018-09-20T13:30:08-0400
int arraySum(int *arr, int size) { int sum = 0; for (int i = 0; i < size; i++) sum += arr[i]; return sum; }
Comments
Leave a comment