(Sum the digits in an integer using recursion) Write a recursive function that
computes the sum of the digits in an integer. Use the following function header:
int sumDigits(int n)
For example, sumDigits(234) returns 2 + 3 + 4 = 9. Write a test program that prompts the user to enter an integer and displays its sum.
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.