Table of Contents
Previous Section Next Section

cbrt

#include <math.h>float cbrtf(float num);double cbrt(double num);
long double cbrtl(long double num);

cbrt( ), cbrtf( ), and cbrtl( ) were added by C99.

The cbrt( ) family of functions returns cube root of num.

A related function is sqrt( ).


Table of Contents
Previous Section Next Section