diff --git a/src/c/funktionen.c b/src/c/funktionen.c index 79e25b5..40d41d3 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -22,4 +22,7 @@ float cube(float x) { return x * x * x; } - +// Function to calculate the cube root of a number +float cubeRoot(float x) { +return cbrt(x); +}