Write a recursive function
double recSum(double array[], int count);
that takes an int argument and returns the sum of count array entries.
```
//Pre: Arguments are defined and initialized
//Post: return value is the sum of count array entries
double recSum(double array[], int count)
{
if (count == 0) return 0;
else
{
return recSum(array, count-1) + array[count-1];
}
}
```
You might also like to view...
When you type something in a cell and then press Enter, the cell pointer moves to the first cell of the next row. _________________________
Answer the following statement true (T) or false (F)
You can create a simple animation with just ______keyframes that specify different values for the same property at different times on the Timeline.
A. four B. three C. two D. one