#include <stdio.h>
main()
{ float a,b,prod;
printf("enter the two number 1...\n");
scanf("%f",&a);
printf("enter the no.2\n");
scanf("%f",&b);
prod=a*b;
printf("%f is product of %f and %f",prod,a,b);
}
main()
{ float a,b,prod;
printf("enter the two number 1...\n");
scanf("%f",&a);
printf("enter the no.2\n");
scanf("%f",&b);
prod=a*b;
printf("%f is product of %f and %f",prod,a,b);
}
No comments:
Post a Comment