

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C Program to sum the digits of a given number in single statement
In this section we will see how to find the sum of digits without writing multiple statements. In other words, we will find the sum of digits in a single statement.
As we know that, to find the sum of digits we cut the last digit by taking the remainder after dividing the number by 10, and then divide the number by 10 again and again until the number becomes 0.
To do these task in a single statement the for loop can be used. As we know there are three different sections in the for loop. In the initialization phase we are doing nothing in this case, then in the condition checking phase are checking whether the number is greater than 0 or not. In the increment decrement phase, we are doing multiple tasks. At first we are incrementing the sum by taking the last digits of the number, and also reduce the number by dividing it by 10.
Example Code
#include<stdio.h> main() { int n, sum = 0; printf("Enter a number: "); //take the number from the user scanf("%d", &n); for(; n > 0; sum += n%10, n/= 10) { } printf("The sum of digits: %d", sum); }
Output 1
Enter a number: 457 The sum of digits: 16
- Related Questions & Answers
- C++ Program to Sum the digits of a given number
- C++ program to find sum of digits of a number until sum becomes single digit
- Find the Largest number with given number of digits and sum of digits in C++
- Finding sum of digits of a number until sum becomes single digit in C++
- Program to find the sum of all digits of given number in Python
- Find smallest number with given number of digits and sum of digits in C++
- Write a Golang program to find the sum of digits for a given number
- C# program to find the sum of digits of a number using Recursion
- PHP program to sum the digits in a number
- C program to find sum of digits of a five digit number
- Check if a given number divides the sum of the factorials of its digits in C++
- Number of digits in the nth number made of given four digits in C++
- Java program to Count the number of digits in a given integer
- Maximum of sum and product of digits until number is reduced to a single digit in C++
- Maximize the given number by replacing a segment of digits with the alternate digits given in C++