#include <stdio.h>
float mul()
{
float a, b;
printf("Enter two numbers: \n");
scanf("%f\n %f", &a, &b);
printf("Multiplication is: %f", a * b);
}
float main()
{
mul();
return 0;
}
//........Coded by JAIDEEP JAMBLE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP