Program to find the sum of digits of a given number until
the sum becomes a single digit

Answer Posted / somasundaram

#include<stdio.h>
#include<conio.h>
void main()
{
unsigned int no;
clrscr();

printf("Enter number : ");
scanf("%d", &no);

if(no==0)
printf("sum = 0");
else
{
no=no%9;
if(no==0)
printf("sum = 9");
else
printf("sum = %d", no);
}

getch();
}

Is This Answer Correct ?    9 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

972


Explain what are linked list?

788


What are the types of arrays in c?

824


What is the difference between text and binary i/o?

761


what is stack , heap ,code segment,and data segment

2416


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

852


What is the collection of communication lines and routers called?

828


Explain how can I pad a string to a known length?

874


How does selection sort work in c?

797


Why use int main instead of void main?

825


Can you write a programmer for FACTORIAL using recursion?

785


How will you delete a node in DLL?

910


Which control loop is recommended if you have to execute set of statements for fixed number of times?

1072


pierrot's divisor program using c or c++ code

1944


How many loops are there in c?

794