# Introduction In this lab, you will learn how to compute the hypotenuse of a right triangle using C programming. The lab covers the step-by-step process of reading the lengths of the two legs, and then calculating the hypotenuse using the Pythagorean theorem. By the end of this lab, you will have a solid understanding of how to perform trigonometric calculations in C. The lab begins by guiding you through the process of reading the lengths of the two legs of the right triangle. You will then use the Pythagorean theorem, which states that the square of the hypotenuse is equal to the sum of the squares of the other two sides, to calculate the hypotenuse. Finally, you will learn how to print the calculated hypotenuse.
Click the virtual machine below to start practicing