/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* WAP to calculate and display radius of a circle by taking the area as input. */ #include #include int main() { double r, area; printf("Enter the area of the circle : "); scanf("%lf", &area); r = sqrt(area / M_PI); printf("\nRadius of the circle : %g", r); return 0; }