write a program to gat the digt sum of a number (et. 15=
>1+5=6)
Answers were Sorted based on User's Feedback
Answer / sagarsp2010
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,sum=0,no;
clrscr();
printf("ENTER THE NO. OF TERMS:");
scanf("%d",&n);
for (i=1;i<=5;i++)
{
no=n%10;
sum=sum+no;
n=n/10;
}
printf("sum=%d",sum);
getch();
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / santhosh kumar
#include<stdio.h>
#include<string.h>
int main ()
{
char no[100];
char num[2];
int i;
int length = 0;
int sum = 0;
memset(num, 0, 2);
printf("Enter the number: ");
gets(no);
length = strlen(no);
for(i=0; i<length; i++)
{
num[0] = no[i];
sum += atoi(num);
}
printf("Sum = %d", sum);
return 0;
}
| Is This Answer Correct ? | 2 Yes | 1 No |
write a program for odd numbers?
What are the back slash character constants or escape sequence charactersavailable in c?
c program to print a name without using semicolon
How pointers are declared?
Can you define which header file to include at compile time?
What are structural members?
What is the condition that is applied with ?: Operator?
how could explain about job profile
Why we use int main and void main?
Why are algorithms important in c program?
code for selection sort?
what is the use of operator ^ in C ? and how it works?