C Program to find the sum of odd digits of a number
In this program, You will learn how to find the sum of odd digits of a number in c.
1234 => 1 + 3 = 4
Example: How to find the sum of odd digits of a number in c.
#include<stdio.h>
int main() {
int n, r, s = 0;
printf("Enter a number:");
scanf("%d", &n);
while (n > 0) {
r = n % 10;
if (r % 2 != 0) {
s = s + r;
}
n = n / 10;
}
printf("Sum of odd digits is:%d", s);
return 0;
}
Output:
Enter a number:23456
Sum of odd digits is:8