Area of triangle program September 12, 2011 Get link Facebook X Pinterest Email Other Apps Q. Write a function to find the area of a triangle whose length of three sides is given.Ans. /*Program to area of triangle using Heron's Formula*/ #include<stdio.h> #include<conio.h> #include<math.h> int main() { int x=10,y=8,z=7; float s=0.0; double area=0; s=(x+y+z)/2.0; area=(s*(s-x)*(s-y)*(s-z)); printf("\nArea of triangle = %lf",area); getch(); return 0; }/**************OUTPUT***************Area of triangle = 773.43750075************************************/ Comments
Comments
Post a Comment