Answer to Question #81117 in C for zeeena

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.
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;
}

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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS