C Program to find the sum of all elements in an Array2 min read

In this section, we will write a C program to perform the addition of all elements in Array.

Before we start, if you want to learn about the Arrays as this program uses an array, click the link below.

Program:

Take the user input for the elements of an array and then by iterating the loop, add each of the element present in an array at each iteration.

Example:

Input: arr[] = {1, 2, 3}
loop: 1 + 2 + 3 = 6
Output: 6

We will write two different programs in C to sum the elements in an array.

  1. Standard method
  2. Using function (user-defined function)

C Program to find the sum of all elements present in an Array

This is a standard method where all of the calculation is done within the main function.

Output:

Enter size of an array: 5
Enter 5 elements in an array:
5
10
6
20
3
Sum of the element of an array: 44


C Program to find the sum of all elements present in an Array using function

A separate function (array_sum()) is created and the parameter array (arr), and the size of an array (size) is passed.

The function calculates the sum of all elements and returns the total sum to the main function where it is displayed.

Output:

Enter size of an array: 4
Enter 5 elements in an array:
5
10
3
8
Sum of the element of an array: 26


MORE

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …
Read More

String Pattern Programs in C

In this tutorial, we will write various C pattern programs for String. Before that, you may go through the following topics in C. for loop …
Read More

Java Program to Find pair of Integers in Array whose sum is given Number

In this tutorial, we will write a program to find a pair of elements from an array whose sum equals a given number in java …
Read More

Program to Print Diamond Alphabet Patterns in C

In this tutorial, we will learn to write a C program to print Diamond patterns using alphabets/characters. However, in this tutorial, we will create a …
Read More

Half Diamond Pattern in C using Alphabets

In this tutorial, we will learn and code the half diamond alphabet patterns in C programming language. However, in this tutorial, we will create a …
Read More

Half Pyramid of Alphabets in C

In this tutorial, we will learn and code alphabet patterns in C programming language specifically the Half pyramid of alphabets in C programming. However, in …
Read More