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
Computer Science,
2 months ago
Hindi,
2 months ago
Math,
5 months ago
Social Sciences,
5 months ago
Geography,
11 months ago
Math,
11 months ago
Biology,
11 months ago