Last active
October 4, 2016 16:42
-
-
Save amirul12/7814dcc95fbed4cc69284c88dcfde142 to your computer and use it in GitHub Desktop.
বৃত্তের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম লিখ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
main ( ) | |
{ | |
int r; | |
float area; | |
printf ("Enter integer value for radius:"); | |
scanf ("%d", &r) ; | |
area = 3.14*r*r; //here the vakue of PI is 3.14 | |
printf("\n Area of circle =%f", area); | |
getch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment