C

Asked • 06/23/19

Check that triangle is right?

I'm trying to check if a triangle is a right triangle in C language. `a`, `b` and `c` are lengths of sides of some triangle. int is_right_triangle(int a, int b, int c) { return (a * a + b * b == c * c || a * a + c * c == b * b || b * b + c * c == a * a); } How I can avoid an integer overflow in sum and multiplication? Assume that we don't have a `long long` type.

1 Expert Answer

By:

Patrick B. answered • 06/25/19

Tutor
4.7 (31)

Math and computer tutor/teacher

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.