wap area of the triangle
Answers
Answered by
1
Answer:
This C Program calculates the area of a triangle given it's three sides. The formula or algorithm used is: Area = sqrt(s(s – a)(s – b)(s – c)), where s = (a + b + c) / 2 or perimeter / 2. and a, b & c are the sides of triangle. Here is source code of the C program to calculate the area of a triangle.
Explanation:
Answered by
3
Pls Mark As Brainliest
Similar questions