From fc67e3c87ccc7236d7b0265676763b3d01427bf4 Mon Sep 17 00:00:00 2001 From: INNA Date: Wed, 7 Feb 2024 16:36:16 +0100 Subject: [PATCH] =?UTF-8?q?=C3=84ndere=20Funktionsname=20von=20sub=20zu=20?= =?UTF-8?q?subdouble?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/subtraktion.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/subtraktion.c b/src/subtraktion.c index 92cbf00..d4c4795 100644 --- a/src/subtraktion.c +++ b/src/subtraktion.c @@ -1,13 +1,9 @@ -#include "subtraktion.h" + #include #include //nimmt zwei Gleitkommazahlen entgegen und gibt Ergebnis der Subtraktion zurück -double sub(double zahl1, double zahl2) { + double subdouble(double zahl1, double zahl2) { return zahl1 - zahl2; } - -int main() { - return 0; -} \ No newline at end of file