Program to find sum of digits of four digits number in C-language

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

OUTPUT
Enter four digit numbers
1234
Sum of digit=10

Comments

Popular posts

Creative pattern of butterfly in C-language

Variable & Datatype for C-programming

Errors in C-language

Introduction of C-language.

Language Translator of C-language

Syntax of C-language

Addition of two numbers in c language

Program to see all ASCII value using for loop in C-language

Program to find the sum of all n elements in an array in C-language