From f8c56a241712f200f06da98a0a784aa0f3924f96 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 4 Feb 2024 22:12:37 +0100 Subject: [PATCH] agerage 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 dc466f6..c4c1f27 100644 --- a/src/c/funktionen.h +++ b/src/c/funktionen.h @@ -43,4 +43,7 @@ float maximum(float x, float y); // Function to calculate the minimum of two numbers float minimum(float x, float y); +// Function to calculate the average of two numbers +float average(float x, float y); + #endif \ No newline at end of file