Math, asked by sidzcool5726, 1 year ago

Write a recursive function to find the sum of digits of a number

Answers

Answered by kapilchaudhary2
1
* C Program to find Sum of Digits of a Number using Recursion.int sum (int a);int main(){int num, result;printf("Enter the number: ");scanf("%d", &num);result = sum no..
Similar questions