Sunday 15 December 2013

C Program to Calculate Sum of all Elements of an Array using Pointers as Arguments

#include < stdio.h>

void main()
{
static int array[5] = { 200, 400, 600, 800, 1000 };
int sum;

int addnum(int *ptr);

sum = addnum(array);
printf("Sum of all array elements = %5d\n" , sum);
}
int addnum(int *ptr)
{
int index, total = 0;
for (index = 0; index < 5; index++)
{
total += *(ptr + index);
}
return(total);
}

Output

 Sum of all array elements =   3000 

For More Details Please Visit Ictjobs.info

No comments: