La fonction ‘hypot()’ pour calculer la racine carrée de la somme des carrés des ses arguments

Author:

 calcul
Download

/*
include

double hypot ( double x , double y  );
float hypotf ( float x , float y  );
long double hypotl ( long double x , long double y  );
*/
  #include

  #include 

  int main(void)
  {

     int e;
     double f;

     f = hypotf(3, 4);
     printf("%f", f);

  }

Leave a Reply

Your email address will not be published. Required fields are marked *