P016.c (420B)
1 /* 2 * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 3 * Repo: https://github.com/notamitgamer/bsc 4 * License: MIT 5 */ 6 7 /* WAP to calculate and display radius of a 8 circle by taking the area as input */ 9 10 #include<stdio.h> 11 #include<math.h> 12 int main() { 13 double area, r; 14 printf("Enter the area of a circle : "); 15 scanf("%lf", &area); 16 r = sqrt((7 * area) / 22); 17 printf("\nRadius : %lf", r); 18 return 0; 19 }