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