Do something to improve things. Anything. Start small or go big. Just do something. Today. Now. The world will be better for it. ----Just because no one else believes in your dreams doesn't mean you shouldn't believe in your dreams. ----The world is the great gymnasium where we come to make ourselves strong. "Swami Vivekananda"

Government Jobs In India Headline Animator

02 July 2010

LOGIC FOR ADDING DIGITS IN A NUMBER IN C

for adding the digits in an number using recursion:

add_digit(int num)
{
static int s=0;
int d=0;
if (num!=0)
{
d=num%10; /// to get the unit digit
num=(num-d)/10;

s=s+d; // to sum the digit's
}
else
{
return(sum);

}

}


















1 comment:

Anonymous said...

add details more elobrate

Subscribe via email

Enter your email address:

Delivered by FeedBurner

website-hit-counters.com
Provided by website-hit-counters.com site.