Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 19:05
Show Gist options
  • Save amirul12/d32a8dc8b914c0875dd26668b4b49bf1 to your computer and use it in GitHub Desktop.
Save amirul12/d32a8dc8b914c0875dd26668b4b49bf1 to your computer and use it in GitHub Desktop.
ত্রিভুজের ভূমি ও উচ্চতা দেয়া , এর ক্ষেত্রফল নির্ণয় করার প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int b,h;
float area;
printf("Enter the Base:");
scanf("%d",&b);
printf("Enter the Height:");
scanf("%d", &h);
area=.5*b*h;
printf("\nThe area is %.2f",area);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment