answersLogoWhite

0

# include <stdio.h> main()

{

int num,count,sum;

count=0;

sum=0;

printf("enter an integer :");

scanf("%d",&num);

printf("ur num is : %d \n",num);

while (num!=0)

{

count++;

sum+=num%10;

num/=10;

}

printf("sum of the digits is : %d",sum);

}

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

ProfessorProfessor
I will give you the most educated answer.
Chat with Professor
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine

Add your answer:

Earn +20 pts
Q: Sum of digits
Write your answer...
Submit
Still have questions?
magnify glass
imp