write a program that computes the area of triangle of radius
Answers
Answered by
2
Explanation:
#include<stdio.h>
main()
{
float h,b;
float area=0;
printf(“enter the height and base of traingle\n”);
scanf(“%f%f”,&h,&b);
area=(h*b)/2; //area of traingle=hb/2
printf(“area of traingle=%2.f”,area);
}
THANKS
MARK ME AS BRAINLIEST
Answered by
0
Answer:
what you want to asked bruda
Similar questions