#include <stdio.h>
int main()
{
    int num1,num2,quotient;
    printf("Enter the two numbers:\n");
    scanf("%d",&num1);
    printf("num1=%d\n",num1);
    scanf("%d",&num2);
    printf("num2=%d\n",num2);
    quotient=num1/num2;
    if(num1>num2)
    {
        printf("The numbers can be divided and quotient=%d\n",quotient);
    }
    else
    {
        printf("Division is not posible");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: