#include <stdio.h>

int main() 
{
    float a=50.50,b=2.00;
    float c;
    c=a / b;
    printf("%.2f",c);
}

Embed on website

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