//C program to find area
//of circle
#include <stdio.h>
#include<math.h>
#define PI 3.142

double findArea(int r){return PI * pow (r,2);}

int main() 
{
    printf("Area is %f",findArea(19));
    return 0;
}

Embed on website

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