Sum of Array C Example Program
Defintion:
Calculate sum for all the array elements.
Sum of Array Example Program
/*##Sum of Array*/
/*##Calculation Programs, Array Example Programs*/
#include <stdio.h>
#define ARRAY_SIZE 5
int main()
{
int array[ARRAY_SIZE];
int i;
float total = 0.0, average;
for (i = 0; i < ARRAY_SIZE; i++)
{
printf("Enter the Number : %d : ", (i+1));
scanf("%d", &array[i]);
}
/* Sum of the Array Using for Loop */
for (i = 0; i < ARRAY_SIZE; i++)
{
total = total + array[i] ;
}
average = total / ARRAY_SIZE;
printf("\n Sum of all Numbers = %f\n", total);
printf("\n Average of all input numbers = %.2f\n", average);
}
Sample Output
Enter the Number : 1 : 6
Enter the Number : 2 : 7
Enter the Number : 3 : 8
Enter the Number : 4 : 2
Enter the Number : 5 : 3
Sum of all Numbers = 26.000000
Average of all input numbers = 5.20
C Array Programs
- Single Dimensional Array Example Program in C Programming
- Sum of Array C Example Program
- Read Array and Print Array C Example Program
- Find Largest or Biggest Number In Array C Example Program
- Simple Sorting In Array C Example Program
- Simple Sorting Descending Order In Array C Example Program
- Simple Searching In Array C Example Program
- Simple C Program for Find Array Size
- Matrix Addition 2 D (dimensional) Array Example Example Program
- Matrix Subtraction 2 D (dimensional) Array Example Example Program
- Matrix Multiplication 2 D (dimensional) Array Example Example Program
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )