Q:

Write C program to find sum of all elements of an array

0

Write C program to find sum of all elements of an array

All Answers

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

#include <stdio.h>
#define MAX_SIZE 100 //Maximum size of the array

int main()
{
    int arr[MAX_SIZE];
    int i, num, sum=0;

    //Reads size and elements in array
    printf("Enter size of the array: ");
    scanf("%d", &num);
    printf("Enter %d elements in the array: ", num);

    for(i=0; i<num; i++)
    {
        scanf("%d", &arr[i]);
    }
    //Adding all elements
    for(i=0; i<num; i++)
    {
        sum = sum + arr[i]; // Calculating sum
    }
    printf("Sum of all elements of array = %d", sum);

    return 0;
}

Result:

Enter size of the array: 5

Enter 5 elements in the array: 1

2

3

4

5

Sum of all elements of array = 15

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

total answers (1)

Write C program to count even and odd elements in ... >>
<< Write a C program to read and print elements of ar...