My issue
how to represent radius square
My code
#include <stdio.h>
int main(void) {
float radius=8.9,pi=3.14;
float area=(radius*radius)*pi;
printf("The Area of the given circle is %f",area);// your code goes here
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone