if a five digit number is input through the keyboard write a program to calculate the sum of its digits.(Hints:Use the modulus operator %)
if a five digit number is input through the keyboard write a program to calculate the sum of its digits.(Hints:Use the modulus operator %)
#include<stdio.h>
int main()
{
int number ,sum=0,i,n, count=0,num;
printf(" Enter the number :");
scanf("%d", &number);
num=number;
while=(num!=0)
{
num/=10;
count+=1;
}
for(i=0;i<count;i++) //i=0 to i=count-1(length(number))
{
n=number%10;
number=number/10;
sum=sum+n;
}
printf("sum=%d",sum);
return 0;
}
OUTPUT-- Enter the number:54678
sum=30
OUTPUT--
another important program- -
https://allcodescience.blogspot.com/2021/12/paper-of-size-a0-has-dimensions-1189.html
Comments
Post a Comment