#include <stdio.h>
float div(float x, float y)
{
return x / y;
}
float main()
{
float a, b;
printf("Enter 2 numbers: \n");
scanf("%f\n%f", &a, &b);
printf("Division is: %f", div(a, b));
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