We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e3841 commit 849fe35Copy full SHA for 849fe35
AREA_OF_A_CIRCLE.c
@@ -0,0 +1,9 @@
1
+# include<stdio.h>
2
+//AREA OF A CIRCLE
3
+int main() {
4
+ float r;
5
+ printf("REDIUS:-");
6
+ scanf("%f", &r);
7
+ printf("AREA - %f", 3.14 * r * r );
8
+ return 0;
9
+}
0 commit comments