A program that divide two integers in C.

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

void main()
{
    int x,y;

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

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


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