×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Find GCD and LCM of two positive integer - MAKAUT / WBUT MCA Slove Dynamic Memory Allocation malloc vs calloc -MAKAUT / WBUT MCA 2011
Sum of its Individual Digit Until Single Digits - MAKAUT / WBUT MCA 2011 - C Language
1610    Arnab De    18/11/2019

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

softetechnologies
#include <stdio.h>
int main()
{
    int no,i,sum;
    printf("Enter A Number : ");
    scanf("%d",&no);
    do{
        sum=0;
        while(no>0)
        {
            sum += no%10;
            no = no/10;
        }
        no=sum;
    }while(sum>9);
    printf("One Digit Sum is %d",sum);
}
softetechnologies
Find GCD and LCM of two positive integer - MAKAUT / WBUT MCA Slove Dynamic Memory Allocation malloc vs calloc -MAKAUT / WBUT MCA 2011
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.
Swami Vivekananda
What makes one man great and another weak and low is shraddha (concentration).
Swami Vivekananda
3605
57.3
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43551
01/01/2018     36485
25/06/2018     35498
28/06/2017     34551
02/08/2017     32982
01/08/2017     27463
06/07/2017     27212
15/05/2017     26845
14/07/2017     22461
21/04/2018     21111
softetechnologies