CBRT(3) Linux Programmer's Manual CBRT(3)
cbrt - cube root function
#include <math.h> double cbrt ( double x );
The cbrt() function returns the cube root of x. This function cannot fail; every representable real value has a representable real cube root.
cbrt is a GNU extension.
sqrt(3), pow(3) September 16, 1995 1