Question #3013   Proposée par Answiki le 28/11/2021 à 9:46:53 UTC

Dans quelle bibliothèque se trouve la fonction sqrt (racine carré) en C ?

Answer   Submitted by Answiki on 11/28/2021 at 09:49:23 AM UTC

En C, la fonction sqrt() permet de calculer une racine carrée. Celle-ci se trouve dans la bibliothèques math.h.

#include <math.h>


Voici un exemple complet :

#include <stdio.h>
#include <math.h>

int main()
{
    double x = 25.;
    
    // Affiche 5.000000
    printf("%f", sqrt(x));
    return 0;
}

3 events in history
Answer by Answiki on 11/28/2021 at 09:49:23 AM

En C, la fonction sqrt() permet de calculer une racine carrée. Celle-ci se trouve dans la bibliothèques math.h.

#include <math.h>


Voici un exemple complet :

#include <stdio.h>
#include <math.h>

int main()
{
    double x = 25.;
    
    // Affiche 5.000000
    printf("%f", sqrt(x));
    return 0;
}

Question by Answiki 11/28/2021 at 09:46:53 AM
Dans quelle bibliothèque se trouve la fonction sqrt (racine carré) en C ?
Question by Answiki 11/28/2021 at 09:46:53 AM
Dans quelle librairie se trouve la fonction sqrt (racine carré) en C ?
# ID Query URL Count

Icons proudly provided by Friconix.