Explain about re of array in memory with an example in c++
Answers
Answered by
1
#include <stdio.h>
int main()
{
int numbers[5], sum = 0;
Printf( "Enter 5 numbers: ");
for (int i = 0; i < 5; ++i)
{
cin >> numbers[i];
sum += numbers[i];
}
cout << "Sum = " << sum << endl;
return 0;
}
gajojuashritha:
welcome
Answered by
0
same as given by above person
my is also same
plz mark me as brainliest
hope it will help you
my is also same
plz mark me as brainliest
hope it will help you
Similar questions
Math,
7 months ago
Political Science,
7 months ago
English,
7 months ago
Biology,
1 year ago
Hindi,
1 year ago