#include #include int main(void) { double x = 1000.0; printf("Cubic root for %g is %g\n", x, cbrt(x)); return 0; }