Computer Science, asked by hudaabidi786, 3 months ago

Write a program to calculate area of triangle by Hero’s Formula
plz plz ans me this question​

Answers

Answered by shaikha10493
1

Answer:

Area Of a Triangle in C

Step 1: In this C program, User will enter the three sides of the triangle a, b, c. Step 2: Calculating the Perimeter of the Triangle using the formula P = a+b+c. Step 4: Calculating the Area of a triangle using Heron's Formula: sqrt(s*(s-a)*(s-b)*(s-c));

Similar questions