#include <stdio.h>

int main() {
    float area,radius;
    radius=2.9876;
    area=3.142*radius*radius;
    printf("the area of cricle is %f",area);
    return 0;
}

Embed on website

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