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

Sum of Digits of a Five Digit Number

  • + 0 comments

    int s=0;

    while(n>0){
    
         s+=n%10;
    
        n/=10;        
    }
    
    printf("%d",s);