diff --git a/src/c/funktionen.c b/src/c/funktionen.c index e2b2251..ba5383b 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -8,4 +8,13 @@ float square(float x) { return x * x; } +float squareRoot(float x) { +if (x >= 0) { +return sqrt(x); +} else { +printf("Error: Invalid input for square root!\n"); +return 0; +} +} +