Skip to content

Instantly share code, notes, and snippets.

@amirul12
Last active October 4, 2016 16:42
Show Gist options
  • Save amirul12/7814dcc95fbed4cc69284c88dcfde142 to your computer and use it in GitHub Desktop.
Save amirul12/7814dcc95fbed4cc69284c88dcfde142 to your computer and use it in GitHub Desktop.
বৃত্তের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম লিখ
#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