Sum of Digits of a Five Digit Number Discussions | C | HackerRank

Sum of Digits of a Five Digit Number

  • + 0 comments

    include

    int main() {

    int n;
    scanf("%d", &n);
    int sum=0;
    while(n>0)
    {
        sum+=n%10;
        n=n/10;
    }
    printf("%d",sum);
    return 0;
    

    }