Computes the Euclidean distance between two points as the square root of their respective squares, returning the following value:
sqrt(x[2] + y[2])
#include <math.h> double cabs (cabs_t z);
typedef struct {double x,y;} cabs_t;