Program to Divide two Numbers

Share it Please
Description:This program is used to divide subtract two numbers entered by user.


Program:

#include<stdio.h>
#include<conio.h>
main()
{
           int a,b,c;
           clrscr();
           printf("Enter First Number: ");
           scanf("%d",&a);
           printf("\nEnter Second Number: ");
           scanf("%d",&b);
           c=a/b;
           printf("\nDivision is %d",c);
           getch();
}