Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Area of a Triangle

#include<stdio.h>
#include<math.h>
 
int main()
{
   
    float a,b,c;
    float s,area;
   
    printf("Enter size of each sides of triangle");
    scanf("%f%f%f",&a,&b,&c);
   
    s = (a+b+c)/2;
    area = sqrt(s*(s-a)*(s-b)*(s-c));
   
    printf("Area of triangle is: %.3f",area);
   
    return 0;
}

Output:

Enter size of each sides of triangle 3

4

2

Area of triangle is: 2.90

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.