Question: Write a recursive C++ function that writes the digits of a positive decimal integer in reverse order. HINT: 2015 % 10 == 5, 2015 /
Write a recursive C++ function that writes the digits of a positive decimal integer in reverse order.
HINT: 2015 % 10 == 5, 2015 / 10 == 201.
EXAMPLE: If given the integer 2015, your function should output 5102.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
