Write a program to calculate area of a right-angled triangle by taking values of base
Answers
Answered by
1
Explanation:
#include<stdio.h>
int main()
{ float b, h, area;
b = 5;
h= 8 ;
area = ( b * h)/2 ;
printf("\n\n Area of Right Angle Triangle is : %f",area);
return (0);
Similar questions
Math,
2 months ago
English,
2 months ago
Social Sciences,
2 months ago
Math,
4 months ago
Social Sciences,
4 months ago
Geography,
10 months ago
Math,
10 months ago
Biology,
10 months ago