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