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