Tech Study

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

Introduction

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

#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

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

 

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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more