Write a program to find the area of a triangle
Answers
Answered by
2
Answer:
C program to find area of a triangle using a function
#include<stdio.h>
#include<math.h>
double area_of_triangle(double, double, double);
int main()
{
double a, b, c, area;
printf("Enter the lengths of sides of a triangle\n");
scanf("%lf%lf%lf", &a, &b, &c)
Similar questions