Program to find the sum of digits of 3 digits number in C-language

#include<stdio.h>
int main()
{
    int a,b,c,x,s;
    printf("Enter three digit numbers\n");
    scanf("%d",&x);
    a=x%10;
    x=x/10;
    b=x%10;
    x=x/10;
    c=x%10;
    x=x/10;
    s=a+b+c;
    printf("Sum of digit=%d",s);
}

OUTPUT
Enter three numbers
456
Sum of digit=15

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to cheque enter number is even or odd in c-language

Program to print the cube of a number in c-language

Creative Pattern of Rhino in C-language

Variable & Datatype for C-programming

Division of two numbers in C-language