| Developer's Daily | Unix by Example |
| main | java | perl | unix | dev directory | web log |
|
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) |