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

Sum of Digits of a Five Digit Number

  • + 0 comments
    #include <stdio.h>
    
    void main() {
            int n, q, result=0;
            scanf("%d", &n);
            for(int i=0; i<5; i++) {
                    result+=n%10;
                    n/=10;
            }
            printf("%d\n", result);
    }