Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions adding two array in array
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#include<iostream>
using namespace std;
int main()
{
int first[20], second[20], sum[20], c, n;

cout << "Enter the number of elements in the array ";
cin >> n;

cout << "Enter elements of first array" << endl;

for (c = 0; c < n; c++)
cin >> first[c];

cout << "Enter elements of second array" << endl;

for (c = 0; c < n; c++)
cin >> second[c];

cout << "Sum of elements of the arrays:" << endl;

for (c = 0; c < n; c++) {
sum[c] = first[c] + second[c];
cout << sum[c] << endl;
}
return 0;
}