Skip to content

Commit 849fe35

Browse files
authored
This is a .c program.
In this program we calculate area of a CIRCLE...
1 parent 35e3841 commit 849fe35

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

AREA_OF_A_CIRCLE.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)