#include <stdio.h>

int main() 
{
    float a = 10.257, b = 2589.257,d = 18.00;
    float c;
    c=a+b+d;
    printf("the is sum of three floating numbers : %.2f",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: