C Program to find the sum of the digits of a number using recursion function1 min read

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation:

  1. Function Definition: sumDigits(int n)
    • This function calculates the sum of digits of a number n.
    • The base case checks if n is 0. If true, it returns 0 (no digits to sum).
    • Otherwise, it uses recursion by summing the last digit of n (obtained by n % 10) with the sum of the remaining digits (obtained by sumDigits(n / 10)).
  2. Main Function: main()
    • The main function begins the execution of the program.
    • It declares two variables: num for user input and result to store the sum of digits.
    • The user is prompted to enter a number, which is then stored in the variable num.
    • The sumDigits function is called with num as an argument, and the result is stored in the result variable.
    • The program prints the sum of digits.
  3. Output:
    • The program outputs the calculated sum of digits for the given input.

Output:

Enter a number: 123
Sum of digits of a number: 6

Learn more on recursion.


MORE

Java Program to find the sum of the Largest Forward Diagonal

in this tutorial, we will write a java program to find the sum of the Largest Forward Diagonal in an Arraylist (matrix). Java Program to …

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a number using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …