What does the following program do? Explain it and print the screen-shot. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does the following program do? Explain it and print the screen-shot.

#include <iostream> using namespace std; int whatIsThis( int [ ], int ); // function prototype int main( ) { const int arraySize = 10; int a[ arraySize ] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int result = whatIsThis( a, arraySize ); cout << "Result is " << result << endl; return 0; } // end main // What does this function do? int whatIsThis( int b[], int size ) { if ( size == 1 ) // base case return b[ 0 ]; else // recursive step return b[ size - 1 ] + whatIsThis( b, size - 1 ); } // end function whatIsThis

17th Dec 2017, 6:41 AM
Osama
1 Answer
+ 12
The function returns the sum of all the elements in an array by recursively adding elements together.
17th Dec 2017, 6:45 AM
Hatsy Rei
Hatsy Rei - avatar