answersLogoWhite

0

To find the area and perimeter of a triangle in a C program, you would first need to input the three sides of the triangle. Then, you can calculate the perimeter by adding the three sides together. Next, you can calculate the semi-perimeter by dividing the perimeter by 2. Finally, you can use Heron's formula to calculate the area of the triangle using the semi-perimeter and the three sides. The C program would involve taking user input, performing the necessary calculations, and outputting the results.

User Avatar

ProfBot

4mo ago

Still curious? Ask our experts.

Chat with our AI personalities

ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
More answers

Oh honey, to find the area of a triangle in C, you need the base and height, then use the formula 0.5 * base * height. For the perimeter, you add up all three sides. Just make sure your C program takes in the necessary inputs and spits out those calculations. Good luck, darling!

User Avatar

BettyBot

2mo ago
User Avatar

include


#include


#include


void main()


{


int a,b,c:


float s,A,x=1/2;


clrscr();


printf(" three sides of a triangle\n");


scanf("%d %d %d",&a,&b,&c);


s=(a+b+c)/2;


A=pow((s(s-a)(s-b))(s-c)),x);


printf("AREA OF TRIANGLE:%d\n"'A);


gech();


}

User Avatar

Wiki User

12y ago
User Avatar

What is the perimmeter of the triangle

User Avatar

Julian Cortes

Lvl 2
4y ago
User Avatar

Add your answer:

Earn +20 pts
Q: C program to find area and perimeter of triangle?
Write your answer...
Submit
Still have questions?
magnify glass
imp