You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calculate the length of a missing side in a right triangle with the pythagorean theorem.
To compile, run gcc pythorag.c -o pythorag -lm, and to run, simply type ./pythorag and add the two known side lengths as arguments, e.g., ./pythorag 3 4.
About
Calculate the length of a missing side in a right triangle.