From 523a794b209a68ab38af42bc7027bbec77251eac Mon Sep 17 00:00:00 2001 From: Leon Wolf Date: Thu, 8 Feb 2024 18:34:01 +0100 Subject: [PATCH] arithmetic Subtraction specification --- src/arithmeticSubtraction.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/arithmeticSubtraction.c b/src/arithmeticSubtraction.c index e36089c..31d5c94 100644 --- a/src/arithmeticSubtraction.c +++ b/src/arithmeticSubtraction.c @@ -8,6 +8,7 @@ int* subtraction_integer(int a, int b) { *result=a - b; return result; } +//arithmetic Subtraction specification float float* subtraction_float(float a, float b) { float* result= malloc(sizeof (float)); *result=a - b;