#include <stdio.h>
#include <math.h>
#define pi 3.142
int main() {
    float area,radius=2.3;
    area= pi*pow(radius,2);
    printf("the area is %f\n",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: