To do addition of all the Elements of Array in C++


C++ code to do addition of all elements in array :-


#include<iostream>
using namespace std;
int main(){
    
    int n ;
    cout<<"enter size if array : ";
    cin>>n;
    int arr[n];
    cout<<"Enter "<<n<<" Array : ";
    for(int i=0;i<n;i++){
        cin>>arr[i];
    }
    cout<<"The array you entered is :";
    for(int i=0;i<n;i++){
        cout<<arr[i]<<" ";
    }
    cout<<endl;
    int sum=0;
    for(int i=0;i<n;i++){
    sum+=arr[i];
    }
    cout<<"the addition of all elements in the array is :" <<sum;
    
    return 0;
    
}



  • Output :-



Addition of all elements in array

  • Video of Output :- 












Comments

Popular posts from this blog

A program to Search element in array , and if repeated so at which location it is present and how many time the number is repeated

Take n no. Of elements and arrange them in Ascending & Descending Order