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 a, b, c, s, area;
printf("Enter Values:");
scanf("%d %d %d", &a, &b, &c);
s=(a+b+c)/2;
area=sqrt(s*(s-a)*(s-b)*(s-c));
printf("Area is: %.2f", area);
getch();
}

Comments