C++ Program to Calculate the Sum of Digits of a Number1 min read

We will write the sum of digits program in C++. Before that, you should have knowledge of the topics in C++ given below.

The program takes a user input for the integer whose sum of the digits needs to be found. Then using while loop, we will iterate the number and extract each digits and add it to the following one.

Lastly, we will display the sum of digits of that number. Let us go through the program.


C++ Program to Find Sum of Digits of a Number

In this program, we will use a while loop to iterate through the number. You can also do that using for loop.

C++ program to display the sum of the digits using a while loop.

Output:

Enter the Number: 123
Sum of Digits: 6


C++ Program to Calculate the Sum of Digits of a Number using for loop

Output: After successful execution of the above program, it will create the same output as the above one.


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 …