A program to find multiply of three number
#include<stdio.h>;
main()
{
int a,b,c,mun;
printf(“enter first number”);
scanf(“%d”,&a);
printf(“enter second number”);
scanf(“%d”,&b);
printf(“enter third number”);
scanf(“%d”,&c);
mun=a*b*c;
printf(“the multiply is %d”,mun);
}
or
#include<stdio.h>;
main()
{
int a,b,a,mun;
printf(“enter all three numbers number n “);
scanf(“%d%d%d”,&a,&b,&c);
mun=a*b*c;
printf(“the multiply is %d”,mun);
}
or
```
#include