C Math cbrt() Function
Example
Return the cube root of different numbers:
printf("%f", cbrt(0));
printf("%f", cbrt(1));
printf("%f", cbrt(27));
printf("%f", cbrt(0.64));
printf("%f", cbrt(-27));
Try it Yourself »
Definition and Usage
The cbrt() function returns the cube root of a number.
The cbrt() function is defined in the <math.h> header file.
Syntax
One of the following:
cbrt(double number);
Parameter Values
| Parameter | Description |
|---|---|
| number | Required. Specifies a number. |
Technical Details
| Returns: | A double value representing the cube root of a number. |
|---|