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 |
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
char ch="{'H','I',0};printf("%s",ch);what is output
write a program in c to print **** * * * * ****
Is the following code legal? struct a { int x; struct a b; }
Write a program to print the prime numbers from 1 to 100?
What are the types of arrays in c?
Differentiate between declaring a variable and defining a variable?
Is that possible to add pointers to each other?
What is the difference between #include and #include 'file' ?
What is the best way to comment out a section of code that contains comments?
What is the OOPs concept?
When is a “switch” statement preferable over an “if” statement?