Skip to content

Instantly share code, notes, and snippets.

View amirul12's full-sized avatar
🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)

MD. AMIRUL ISLAM amirul12

🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)
View GitHub Profile
@amirul12
amirul12 / Area of circle.c
Last active October 4, 2016 16:42
বৃত্তের ক্ষেত্রফল নির্ণয়ের প্রোগ্রাম লিখ
#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);