Q:

Write a C Program to Calculate Addition of All Elements in Array

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Arrays Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C Program to Merge Sort of two different a... >>
<< Write a C Program to Implement Queue using an Arra...