From 12ff346eff1ada528f8426b8fbda4c0e3ac9876d Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 16:10:23 +0100 Subject: [PATCH] squareroot 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 a00e3f3..6f517c5 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -4,4 +4,7 @@ // Function to calculate the square of a number float square(float x); +// Function to calculate the square root of a number +float squareRoot(float x); + #endif \ No newline at end of file