My issue
Please change the task it is not working properly
My code
#include <stdio.h>
int main()
{
float pi=3.14;
float radius=8.9;
float area= pi*(radius*radius);
printf("The Area of given Circle is %f", area);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone