A program that divide two integers in Cpp.

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

void main()
{
    int x,y;
    float d;
    clrscr();
    cout<<"Enter first number : ";
    cin>>x;
   
    cout<<"\nEnter second number : ";
    cin>>y;

    d=x/y;
   
    cout<<"\nDivide Result = "<<d;
    getch();
}


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