Computer Science, asked by Arorabhavika213, 1 year ago

C program to check if triangle is right angled or not

Answers

Answered by Anonymous
0

Answer: through the keyboard, write a program to check whether the triangle is isosceles, ... if((a>b && a>c) && a<(b+c) || (b>a && b>c) && b<(a+c) || (c>a && c>b) ... printf("This triangle is a right angled triangle. ... never be true in your code ... TRY This, it'll never fail... no matter if you enter +ve, -ve or even 0 values.

Explanation:

Similar questions