#include<stdio.h>
int main()
{
int a,b,c,d,x,s;
printf("Enter four digit numbers\n");
scanf("%d",&x);
a=x%10;
x=x/10;
b=x%10;
x=x/10;
c=x%10;
x=x/10;
d=x%10;
x=x/10;
s=a*b*c*d;
printf("Product of digit=%d",s);
}
OUTPUT
Enter four digit numbers
1234
Product of digit=24
Comments
Post a Comment