Recent Posts

9-latest-250px-course

Write a C program to Program to Find the Sum of Digits of a Given Number

Write a C program to Program to Find the Sum of Digits of a Given Number


Program:-     

# include

int sum_of_digits(int n)

{

int sum = 0;

while (n != 0)

{

sum = sum + n % 10;

n = n/10;

}

return sum;

}

int main()

{

int n;

printf(“\nEnter a number : “);

scanf(“%d”,&n);

printf(“\nSum of digits of %d is %d\n”, n,sum_of_digits(n));

return 0;

}

Output:-

....
SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment