My first post

This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.

বৃত্তের ক্ষেত্রফল নির্ণয়ের সি প্রোগ্রামিং


#include<stdio.h>
 #include<conio.h>


 main()
{
int r, area;
 printf("Enter Radius:");
 scanf("%d", &r);
 area = 3.1416*r*r;
printf("Area is: %.2f", area);
 getch();
 } 

Comments