Computer Science, asked by ushavr00, 4 days ago

Write a program in c to find the product of even digits​​

Answers

Answered by gokulapriyan4444
0

Answer:

include<stdio.h>

int main()

{

int num, rem, prod = 1;

printf("Enter a number: ");

scanf("%d", &num);

while(num != 0)

}

Similar questions