Question #81117

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.

Expert's answer

int arraySum(int *arr, int size) {
int sum = 0;
for (int i = 0; i < size; i++)
sum += arr[i];
return sum;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS