Compute area of Triangle Input Three Sides
/* C Program how to calculate surface area of a triangle when three sides are given */ #include<stdio.h> #include<math.h> int main() { float side1, side2, side3, s, area; printf(“Enter the length of first side of triangle =”); scanf(“%f”, &side1); printf(“Enter the length of second side of triangle =”); scanf(“%f”, &side2); printf(“Enter the length of third… Read More »