CALCULATION THE SUM OF DIGITS

#include<stdio.h>
#include<conio.h>
void main()
{
    int num, sum = 0;
    printf("Enter a number");
    scanf("%d",&num);
    for(;num>0; num /= 10)
    sum +=    num%10;
    printf("Sum of number = %d",sum);
}

0 comments: (+add yours?)

Post a Comment