w3resource

C Exercises: Compute the sum of the elements of a given array of integers


36. Sum Array Elements

Write a C program to compute the sum of the elements of an array of integers.

C Code:

#include <stdio.h>
#include <stdlib.h>

// Function prototype for 'test'
int test(int a1[]);

int main(void){
    // Declaration and initialization of arrays
    int array1[] = {10, 20, 30, 40, 50};
    int array2[] = {10, 20, -30, -40, 50};

    // Printing the result of calling 'test' function with different arrays
    printf("%d", test(array1));
    printf("\n%d", test(array2));
}

// Definition of the 'test' function
int test(int a1[])
{
    // Adding up the elements of the array and returning the result
    return a1[0] + a1[1] + a1[2] + a1[3] + a1[4];
}

Sample Output:

150
10

Pictorial Presentation:

C Programming Algorithm: Compute the sum of the elements of a given array of integers

Flowchart:

C Programming Algorithm Flowchart: Compute the sum of the elements of a given array of integers

For more Practice: Solve these Related Problems:

  • Write a C program to compute the product of elements in an array of integers.
  • Write a C program to compute the sum of only the even numbers in an array.
  • Write a C program to compute the sum of an array while ignoring negative numbers.
  • Write a C program to compute the cumulative sum of an array and store it in a new array.

Go to:


PREV : Array First or Last Element Comparison.
NEXT : Left Rotate Array.

C Programming Code Editor:



What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.