Recent Posts

Monday, 30 July 2018

Sum of digits in C

In the previous post we learn about What is palindrome number and How to write a program  for palindrome number.

In this post we will learn how to write a program for sum of digits in C.
Sum of digits means addition of two or more than two numbers for example number 456 will be 15.

456
4+5+6=15

Program for Sum of digits:




#include <stdio.h>

#include <conio.h>

int main()

{

    int n, num, rem, sum=0;

clrscr();

        printf("Enter number");

        scanf("%d",&num);

        while(num>0)

        {

        rem=num%10;

        sum=sum+rem;

        num=num/10;

}

    

    printf("sum of digit=%d",sum);

    getch();

}


Output:
  Enter number: 456
  Sum of digit: 15

Related Posts:

  • addtion program in C In the previous tutorial we learn about simple program How to write Hello world in 'C'.and in this post we will learn how to sum two numbers in c p… Read More
  • How to write C Program In the C programming language Data type, operator, identifiers, keywords, constants, and variables are the basic building blocks of C Program.Before … Read More
  • Structure of C Program In the previous tutorial we learnt Rules for writing a 'C' Program.In this tutorial we will learn the Structure of C Program.The C program i… Read More
  • C Program to swap two numbers In the previous post we learnt about Program for addition of two numbers.In this post we learnt about  How to get two numbers and swap it #inc… Read More
  • Palindrome number in C Here we will see what is palindrome number and how to write a program for palindrome number. Palindrome number in C: A palindrome number that re… Read More

0 comments:

Post a Comment

Followers

Popular Posts

Categories

social media

Text Widget

Powered by Blogger.

About Me

My name is junaid khan and i am a full time blogger and author of a blog tutorial called tutorialpointsolution.

String function

In the previous post we learn about what is String .we know that string is a collection of two or more characters.In string we can store al...

Search This Blog

Technology

Adbox

Recent Post

Breaking

Recent In Internet

Comments

Facebook

Pages

Comments

Pages

Recent

Pages

Technology