#include #define PI 3.142 int main(){ float R, A; printf("Enter the radius: \n"); scanf("%f", &R); A = PI * R * R; printf("Area is: %f\n", A); }