A program that divide two floating point numbers in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    float x,y,d;
    clrscr();
    printf("Enter first number : ");
    scanf("%f",&x);
   
    printf("\nEnter second number : ");
    scanf("%f",&y);

    d=x/y;
   
    printf("\nDivide Result = %d",d);
    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........