In this tutorial, we will discuss C program to calculate sum in array elements
In this topic, we will learn code to how to calculate sum of elements in integer array in C programming language.
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int array[]={45,67,53,47,65,32,45,78};//Array declaration and initiation int sum,count;//variable declaration sum=0; for(count=0; count<=7; count++){//loop iterates to calculate sum sum=sum+array[count]; } printf("Sum of array is %d",sum);//display result on the screen getch(); return 0; }
When the above code is compiled and executed, it produces the following results
Sum of array is 432
In this program, we can see some of the steps by step procedures given below
Program 2
#include <stdio.h> #include <stdlib.h> int main() { int array[5];//Array declaration int sum,i,j;//variable declaration for(i=0; i<=5; i++){ printf("Enter the elements for array[%d]: ",i); scanf("%d",&array[i]);//loop iterates to take input from the user } sum=0; for(j=0; j<=5; j++){//loop iterates to calculate sum sum=sum+array[j]; } printf("\nSum of array elements is %d",sum); getch(); return 0; }
When the above code is compiled and executed, it produces the following results
Enter the elements for array[0]: 56 Enter the elements for array[1]: 78 Enter the elements for array[2]: 98 Enter the elements for array[3]: 75 Enter the elements for array[4]: 46 Enter the elements for array[5]: 76 Sun of array elements is 358
In this program, we can see some of the steps by step procedures given below
Similar post
largest number of three number in C
largest number of three number in C++
largest number of three number in Python
largest number of three number in C using function
largest number of three number in C++ using function
largest number of three number in Python using function
largest number of three number in Java using method
Suggested for you
Single dimension array in C language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…