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
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain what are linked list?
What are the types of arrays in c?
What is the difference between text and binary i/o?
what is stack , heap ,code segment,and data segment
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the collection of communication lines and routers called?
Explain how can I pad a string to a known length?
How does selection sort work in c?
Why use int main instead of void main?
Can you write a programmer for FACTORIAL using recursion?
How will you delete a node in DLL?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
pierrot's divisor program using c or c++ code
How many loops are there in c?