diff --git a/src/arithmeticDivision.c b/src/arithmeticDivision.c index dfdf00a..3233c7b 100644 --- a/src/arithmeticDivision.c +++ b/src/arithmeticDivision.c @@ -23,4 +23,16 @@ long* division_long(long dividend, long divisor) { long* result = malloc(sizeof(long)); *result = dividend / divisor; return result; +} + +double* division_double(double num1, double num2) { + if(num2 == 0) { + return NULL; + } + + + + double* result = malloc(sizeof(double )); + *result = num1 / num2; + return result; } \ No newline at end of file diff --git a/src/arithmeticDivision.h b/src/arithmeticDivision.h index 08bc4f5..df45e81 100644 --- a/src/arithmeticDivision.h +++ b/src/arithmeticDivision.h @@ -5,4 +5,6 @@ int* division_integer(int, int); long* division_long(long, long); +double* division_double(double, double); + #endif //THEADMIRALS_ARITHMETICDIVISION_H diff --git a/src/arithmeticMultiplication_Double.c b/src/arithmeticMultiplication_Double.c index 3207551..c33d245 100644 --- a/src/arithmeticMultiplication_Double.c +++ b/src/arithmeticMultiplication_Double.c @@ -5,7 +5,7 @@ double* multiplication_double(double a, double b) { double* result = (double*)malloc(sizeof(double)); if (result == NULL) { - return NULL; // Handle memory allocation failure + return NULL; } *result = a * b; // we multiply a times b and the result gets saved in *result return result; diff --git a/src/arithmeticMultiplication_Float.c b/src/arithmeticMultiplication_Float.c index 8e063f2..547b9d7 100644 --- a/src/arithmeticMultiplication_Float.c +++ b/src/arithmeticMultiplication_Float.c @@ -4,7 +4,7 @@ float* multiplication_float(float a, float b) { float* result = (float*)malloc(sizeof(float)); if (result == NULL) { - return NULL; // Handle memory allocation failure + return NULL; } *result = a * b; return result; diff --git a/src/arithmeticMultiplication_Int.c b/src/arithmeticMultiplication_Int.c index 1ad1a19..6aaea5f 100644 --- a/src/arithmeticMultiplication_Int.c +++ b/src/arithmeticMultiplication_Int.c @@ -6,7 +6,7 @@ int* multiplication_integer(int a, int b) { int *result = (int*)malloc(sizeof(int)); if (result == NULL) { - // Handle memory allocation failure + return NULL; }