From 16299ad3bd8b70c9f8b8b8e99a773acb4f95fd00 Mon Sep 17 00:00:00 2001 From: INNA Date: Tue, 6 Feb 2024 16:18:08 +0100 Subject: [PATCH] Erste Implementierung der Subtraktionsfunktion --- src/subtraktion.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/subtraktion.c b/src/subtraktion.c index 732df5e..92cbf00 100644 --- a/src/subtraktion.c +++ b/src/subtraktion.c @@ -2,6 +2,12 @@ #include #include + +//nimmt zwei Gleitkommazahlen entgegen und gibt Ergebnis der Subtraktion zurück +double sub(double zahl1, double zahl2) { + return zahl1 - zahl2; +} + int main() { return 0; } \ No newline at end of file