Program to find the sum of digits of an integer
Program:
#include<stdio.h>
#include<conio.h>
void main()
{
int n, r, s = 0;
clrscr();
printf("Enter a number : ");
scanf("%d", &n);
while(n > 0)
{
r = n % 10;
s = s + r;
n = n / 10;
}
printf("\nThe sum of the digits is : %d", s);
getch();
}
Output:
Enter a number : 12345
The sum of the digits is : 15
-
UpdatedDec 30, 2019
-
Views6,572
You May Like
Program to maintain employee details using structures
Program to maintain student details using structures
Check whether the person is eligible to vote or not
Print the numbers that are divisible by a given no.
Program to generate magic square
To sort the given numbers in ascending & descending order