int arraySum (int array[], int n)
{
int sum = 0, *ptr;
for (ptr = array; ???; ++ptr)
sum += ???
return sum;
}
int n Is the size of the array.
|
Since it seems to be your homework / assignment, I'll just give you 2 hints and let it finish you on your own: Hint 1: Hint 2: |
||||
|
|
|
|||
|
|
|
The first A pointer is an address in memory. So You want to travel on the array until you reach the last object, since we're comparing addresses in the
|
|||||
|
|
???:0; second???:0; for (int k=0; k<n; k++) sum += array[k];– pmg Feb 19 at 10:07ithat you increment and make sure that your loop only runs whilei < n? :) – Jite Feb 19 at 10:08