A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write C++ program to find sum of all elements of an array
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

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:

Enter size of the array: 5

Enter 5elements in the array: 

10

20

30

40

50

Sum of all elements of array: 150

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now