diff --git a/src/c/funktionen.c b/src/c/funktionen.c index ba5383b..79e25b5 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -17,4 +17,9 @@ return 0; } } +// Function to calculate the cube of a number +float cube(float x) { +return x * x * x; +} +