#include <stdio.h>
int main()
{
float num1,num2,quotient;
printf("enter the values of num1\n");
scanf("%f",&num1);
printf("enter the values of num2\n");
scanf("%f",&num2);
quotient=num1/num2;
printf("division of 50.50 and 2.00 is:%f",quotient);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: