100% c prog to add digits of given number and display it


#include <stdio.h>
void main()
{
  int rem,numb,total=0;  
 printf("\n enter a non-negative integer:");
 scanf("%d",&numb);
 while(numb)
 {
     rem=numb%10;
     total=total+rem;
     numb=numb/10;
 }
    printf("\n sum of digits of given number =%d",total);
}

ఔట్పుట్  తెర  మీద ఇలా..
enter a non-negative integer:218
sum of digits of given number=11


enter a non-negative integer:0
sum of digits of given number=0

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)