...

/

Challenge: Recursive Base Converter

Challenge: Recursive Base Converter

Apply what you’ve learned about recursion in the coding exercises in this lesson.

Problem statement

In this challenge, you have to implement the converter function.

void converter(int n, int base);

You are given a number, n, and target base, base ...