1CBRT(3) Linux Programmer's Manual CBRT(3)
23
4
NAME
6cbrt, cbrtf, cbrtl - cube root function
7
SYNOPSIS
9#include <math.h>
1011
double cbrt(double x);
12float cbrtf(float x);
13long double cbrtl(long double x);
1415
Link with -lm.
16
DESCRIPTION
18The cbrt() function returns the (real) cube root of x. This function
19cannot fail; every representable real value has a representable real
20cube root.
21
CONFORMING TO
23C99
24
SEE ALSO
26pow(3), sqrt(3)
2728
29
30
GNU 2002-27-07 CBRT(3)