cbrt - Returns Cube Root value in C

 #include <math.h>
  #include <stdio.h>

  int main(void)
  {

  printf("%f", cbrt(27));
}

Output:
3.000000