Tech Study

Write Sum of Elements in an array in C++ Programming

Introduction :

sum of elements in an array c++

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
#define MAX_SIZE 100 //Maximum size of the array
using namespace std;
 
int main()
{
    int arr[MAX_SIZE];
    int i, num, sum=0;
 
    //Reads size and elements in array
    cout<<"Enter size of the array: ";
    cin>>num;
    cout<<"Enter "<<num<< "elements in the array: "<<endl;
 
    for(i=0; i<num; i++)
    {
        cin>>arr[i];
    }
    //Adding all elements
    for(i=0; i<num; i++)
    {
        sum = sum + arr[i]; // Calculating sum
    }
   cout<<"Sum of all elements of array: "<< sum;
 
    return 0;
}

Result

Write C++ program to find sum of all elements of an array
Write sum of elements in an array c++ programing 

To learn more about c++ viste these links :

Write C++ program to insert an element in array

Write C++ program to count total number of negative elements in array

 

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

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more