Challenge: Print Base 16 Integers
Try solving the problem of converting an integer of base 10 to base 16. Check if you can solve this problem using recursion.
We'll cover the following...
Problem
Given an integer in decimal form, print its hexadecimal form. Use recursion to solve the ...