Computer Science, asked by subasusan137, 24 days ago

write a program that computes the area of triangle of radius​

Answers

Answered by jayantkumarmuz2007
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 honsinghanse02496
0

Answer:

what you want to asked bruda

Similar questions