C++ Online Compiler
Example: Simple Array Sum Program in C++
C
C++
C#
Java
Python
PHP
main.cpp
STDIN
Run
// Simple Array Sum Program in C++ #include <iostream> using namespace std; int main() { int s; cout << "Enter size of the array:\n"; cin >> s; int arr[s], i=0, sum=0; cout << "\nEnter the elements of the array:\n"; while (i<s) { cin >> arr[i]; sum += arr[i]; i++; } cout << "\nSum = " << sum; return 0; }
8 1 3 5 7 8 9 23 56
Output
Clear
ADVERTISEMENTS