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 b, h, area;
 printf("Enter Base and Height:");
scanf("%d" "%d", &b, &h); 
area =1/2*b*h;
printf("Area is: %.2f", area);
getch();
 }

Comments