/* include <math.h> double hypot ( double x , double y ); float hypotf ( float x , float y ); long double hypotl ( long double x , long double y ); */ #include <math.h> #include <stdio.h> int main(void) { int e; double f; f = hypotf(3, 4); printf("%f", f); } |
----------------------------------------------------------------------------