#include <stdio.h>

int main() {
   float radius;
   printf("Enter Radius of circle\n");
    scanf("%f",&radius);
    printf("Area of circle is =");
    printf("%f",3.14f*radius*radius);
    
   
    return 0;
}

Embed on website

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