Calculate Addition of All Elements in Array
Write a C Program to Calculate Addition of All Elements in Array. Here’s simple Program to Calculate Addition of All Elements in Array in C Programming Language.
What is an Array ?
Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.
Instead of declaring individual variables, such as number0, number1, …, and number99, you declare one array variable such as numbers and use numbers[0], numbers[1], and …, numbers[99] to represent individual variables. A specific element in an array is accessed by an index.
All arrays consist of contiguous memory locations. The lowest address corresponds to the first element and the highest address to the last element.
Here is source code of the C Program to Calculate Addition of All Elements in Array. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE : :
/* C Program to Calculate Addition of All Elements in Array */ #include<stdio.h> int main() { int i, arr[50], sum, num; printf("Enter no of elements :"); scanf("%d", &num); //Reading values into Array printf("\nEnter the values :\n"); for (i = 0; i < num; i++) { printf("\nEnter %d value :: ",i+1); scanf("%d", &arr[i]); } //Computation of total sum = 0; for (i = 0; i < num; i++) sum = sum + arr[i]; printf("\nPrinting of all elements of array :: \n"); for (i = 0; i < num; i++) printf("\na[%d]=%d", i+1, arr[i]); //Printing of total printf("\n\nSum of all elements = %d", sum); return 0; }
OUTPUT : :
/* C Program to Calculate Addition of All Elements in Array */ Enter no of elements :6 Enter the values : Enter 1 value :: 1 Enter 2 value :: 2 Enter 3 value :: 3 Enter 4 value :: 4 Enter 5 value :: 5 Enter 6 value :: 6 Printing of all elements of array :: a[1]=1 a[2]=2 a[3]=3 a[4]=4 a[5]=5 a[6]=6 Sum of all elements = 21
If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.
Thanks for reading the post….