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

Sum of Digits of a Five Digit Number

  • + 0 comments

    int main() {

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

    }