#include
using namespace std;
void function(char[ ], int, int);
int main()
{
Char names [ ] = "Adam and Eve";
cout << names<< endl;
function(names, 0, 13);
}
void function(char array[ ] , int pos, int size)
{
if (pos < size - 1)
{
function(array, pos + 1, size);
cout << array[pos];
}
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.