#include <stdio.h>

int main() 
{
 float a,b,c;
    a=50.50;
    b=2.00;
    c=a/b;
    printf("the division of 50.50 and 2.00 is %f",c);
    return 0;
}

Embed on website

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