#include stdio.h
#include math.h

int main() {
double number = 10.0;
double cubeRoot = cbrt(number);
printf("The cube root of %.2f is %.2f\n", number, cubeRoot);
return 0;
}

What is the output of the following program

Posted on by