Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

share|improve this question
4  
I smell homework – Maroun Maroun Feb 19 at 10:06
you probably want to make sure you use the entire array, but no item more. – hetepeperfan Feb 19 at 10:07
First ???: 0; second ???: 0; for (int k=0; k<n; k++) sum += array[k]; – pmg Feb 19 at 10:07
How about adding a second variable i that you increment and make sure that your loop only runs while i < n? :) – Jite Feb 19 at 10:08

3 Answers

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:
When you have a pointer to int: int* ptr, you can access the int it points to by dereferencing your pointer using dereference operator: *ptr

Hint 2:
When you increment ptr by 1 3 times, it will point to the same memory as ptr + 3 does. Note that ptr + 3 points to the memory at the address &ptr[3].

share|improve this answer
int arraySum (int array[], int n)  
{  
  int sum = 0, *ptr;  
  for (ptr = array; ptr - array < n; ++ptr)  
    sum += *ptr;  
  return sum;  
}  
share|improve this answer

The first ??? should be replaced with ptr < &array[n], the second with *ptr.

A pointer is an address in memory. array contains an address (where array[0] is located).

So array + i is a pointer to array[i].

You want to travel on the array until you reach the last object, since we're comparing addresses in the for loop, so we compare ptr with the address of the last element in the array. So your program will look:

int arraySum (int array[], int n)  
{  
  int sum = 0, *ptr;  
  for (ptr = array; ptr < &array[n]; ++ptr)  
  sum += *ptr;  
  return sum;  
}  
share|improve this answer
thanks you alot! – user2086550 Feb 19 at 10:21
You are welcome to accept it :) – Maroun Maroun Feb 19 at 13:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.