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