#include <stdio.h>
int main() {
float a,b,c;
printf("Enter the first number:\n");
scanf("%f",&a);
printf("Enter the second number:\n");
scanf("%f",&b);
if (a!=0)
{c=b/a;
printf("the divion of first 2 numbers is: %f",c);}
else
{printf("Division is not possible");}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: