×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Binary Searching using C - MAKAUT / WBUT MCA 2011 Write a c Programming to create a binary pyramid. - MAKAUT / WBUT MCA 2012
Sum of its Individual Digits Repeatedly - MAKAUT / WBUT MCA 2011 - C Language
2223    Arnab De    18/12/2019

Write a program to accept a number and find sum of its individual digits repeatedly till the result is a single digit. [MAKAUT / WBUT MCA 2011]

Here we use two loop, one for sum the digits and another one use for checkthat sum result.

softetechnologies
#include <stdio.h>
int main()
{
    int no,s=10;
    printf("Enter A No : ");
    scanf("%d",&no);
    while(s>9)
    {
        s=0;
        while(no>0)
        {
            s += no%10;
            no /= 10;
        }
        no=s;
    }
    printf("One Digit Sum is %d",s);
}
softetechnologies

Output :

Enter A No :2345
One Digit Sum is 5

Binary Searching using C - MAKAUT / WBUT MCA 2011 Write a c Programming to create a binary pyramid. - MAKAUT / WBUT MCA 2012
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Nelson Mandela
Education is the most powerful weapon which you can use to change the world.
Nelson Mandela
775
79.58
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53865
25/06/2018     44935
01/01/2018     43513
28/06/2017     41083
02/08/2017     40054
01/08/2017     34103
06/07/2017     33938
15/05/2017     33182
11/09/2018     29969
14/07/2017     29646
softetechnologies