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

Sum of Digits of a Five Digit Number

  • + 22 comments
    while (n>0) {
            sum += (n%10);
            n=n/10;
        }