From 1d9828d5b223de77a40ca26f5baa07401f827be2 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 16:20:20 +0100 Subject: [PATCH] cuberoot funktion hearder --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index 767df58..8377a0d 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -10,4 +10,7 @@ float squareRoot(float x); // Function to calculate the cube of a number float cube(float x); +// Function to calculate the cube root of a number +float cubeRoot(float x); + #endif \ No newline at end of file