C Program to find hypotenuse without math.h
Write a C program to find hypotenuse of a right-angled triangle without using math.h. Let be the perpendicular and be the base of a right-angled triangle. The hypotenuse, is given by We can easily find the hypotenuse using the above formula but the catch is we cannot use math.h. Therefore, we cannot use sqrt() to …