int findOddDigitsSum( int n){
int rb=0;
while(n){
if(n%10%2)rb+=n%10;
n=n/10;
}
return rb;
}
Hi friends....
In this blog I'm going to give answer for daily test skillrack program, daily challenges and kick start programs and give some coding techniques.
It'll be helpful for u sure and make it usefull
Learn More →
0 Comments