/* * 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 area, r; printf("Enter the area of a circle : "); scanf("%lf", &area); r = sqrt((7 * area) / 22); printf("\nRadius : %lf", r); return 0; }