Write a Program to accept an integer & find the sum of its digits


/*
 C program to accept an integer & find the sum of its digits
*/

#include <stdio.h>

void main()
{
    long num, temp, digit, sum = 0;

    printf("Enter the number \n");
    scanf("%ld", &num);
    temp = num;
    while (num > 0)
    {
        digit = num % 10;
        sum  = sum + digit;
        num /= 10;
    }
    printf("Given number = %ld\n", temp);

   printf("Sum of the digits %ld = %ld\n", temp, sum);
}




/*
INPUT :
Enter the number
23534

OUTPUT :
Given number = 23534
Sum of the digits 23534 = 17
*/

Comments