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

Sum of Digits of a Five Digit Number

  • + 0 comments

    include

    include

    include

    include

    int main() {

    int n,j,sum=0;
    scanf("%d", &n);
    for (int i=0;i<n;){
        j = n%10;
        n = n/10;
        sum+=j;
    
    }
    printf("%d",sum);
    
    return 0;
    

    }