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;
    scanf("%d", &n);
    int sum=0;
    int a,i;
    for(i=0;i=n;i++){
    a=n%10;
    sum=sum+a;
    n=n/10;
    }
    printf("%d",sum);
    return 0;
    

    }