From 69faf25cc66ef8f06fb2e3f97f1e27175a60f4c0 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 21:58:43 +0100 Subject: [PATCH] test_absoluteDifference Funktoin header --- src/c/funktionen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/funktionen.h b/src/c/funktionen.h index d2387c9..0a83972 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -34,4 +34,7 @@ float floorValue(float x); // Function to calculate the ceiling value of a number float ceilingValue(float x); +// Function to calculate the absolute difference between two numbers +float absoluteDifference(float x, float y); + #endif \ No newline at end of file