bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

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 }
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror