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

Sum of Digits of a Five Digit Number

  • + 0 comments
    #include <stdio.h>
    
    int main() 
    {
        int n;
        scanf("%d", &n);
    
        // Calculate the sum of the digits
        int sum = 0;
        while (n > 0) {
            sum += n % 10; // Add the last digit to the sum
            n /= 10; // Remove the last digit
        }
    
        printf("%d\n", sum);
    
        return 0;
    }