pythag

double pythag(double a, double b);

Returns the square root of a2 + b2 without destructive overflow or underflow.

Parameters:
aFirst value.
bSecond value.

Returns:
a2 + b2

Header:
#include "mathx.h"