1 #include <math.h> 2 3 /* 4 * @implemented 5 */ 6 double _cabs( struct _complex z ) 7 { 8 return sqrt( z.x*z.x + z.y*z.y ); 9 // return hypot(z.x,z.y); 10 } 11 12 13 14 15