In C, the hypot function is part of the <math.h> library and calculates the square root of the sum of squares of two numbers: hypot(x, y) = sqrt(x² + y²). This function ensures numerical stability compared to manually computing the hypotenuse with sqrt(x*x + y*y).