Région de recherche :

Date :

https://www.programiz.com › c-programming › library-function › math.h › sqrt

C sqrt () - C Standard Library - Programiz

The sqrt() function takes a single argument (in double) and returns its square root (also in double). The sqrt() function is defined in math.h header file. To find the square root of int, float or long double data types, you can explicitly convert the type to double using cast operator.

https://www.geeksforgeeks.org › sqrt-function-in-c

sqrt () Function in C - GeeksforGeeks

sqrt () function in C is a predefined function in the math.h library used to calculate the square root of a given number. To use this function, we must include the <math.h> header file in our program.

https://www.w3schools.com › c › ref_math_sqrt.php

C Math sqrt() Function - W3Schools

The sqrt() function returns the square root of a number. The sqrt() function is defined in the <math.h> header file.

https://en.cppreference.com › w › c › numeric › math › sqrt

sqrt, sqrtf, sqrtl - cppreference.com

sqrt is required by the IEEE standard to be correctly rounded from the infinitely precise result. In particular, the exact result is produced if it can be represented in the floating-point type.

https://www.tutorialspoint.com › c_standard_library › c_function_sqrt

C library - sqrt () function - Online Tutorials Library

The C library sqrt () function of type double accept the variable x (double) as parameter to return the result of square root. The square of a number is obtained by multiplying the number by itself.

https://codetofun.com › c › math-functions › sqrt

C sqrt() Function - CodeToFun

The sqrt() function returns the square root of the given number as a double. If the input is negative, the function returns NaN (Not a Number).

C sqrt() Function - CodeToFun

https://learn.microsoft.com › fr-fr › cpp › c-runtime-library › reference › sqrt-sqrtf-sqrtl

sqrt, sqrtf, sqrtl | Microsoft Learn - learn.microsoft.com

Les fonctions sqrt retournent la racine carrée de x. Par défaut, s’il x est négatif, sqrt retourne une indéfinie NaN.

https://koor.fr › C › cmath › sqrt.wp

KooR.fr - Fonctions sqrt, sqrtf et sqrtl - Langage C

Fonctions sqrt, sqrtf, sqrtl. double sqrt( double value ); float sqrtf( float value ); // C99. long double sqrtl( long double value ); // C99. Ces trois fonctions permettent de calculer la racine carré d'une valeur passée en paramètre.

https://codelessons.dev › en › sqrt-in-c-cplusplus

sqrt in C/C++: calculating square root - codelessons.dev

Understand and implement the square root function in C and C++ with examples, differences between variants of the function, and exercises for reinforcement.