#include <stdio.h>
int main() 
{
    float divident,divisor,quotient;
    divident=50.50;
    divisor=2.00;
    quotient=divident/divisor;
    printf("The quotient=%f\n",quotient);
    return 0;
}

Embed on website

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