From a465662ac1b3504b782af4b47523ff41e98dea20 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 17:36:34 +0100 Subject: [PATCH] Funtion Mulitiplikation --- src/main/duellist-spielesammlung-projekt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 8abc8aa..9270399 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -396,4 +396,6 @@ int subtraction(int a, int b) { return a - b; } - +int multiplication(int a, int b) { + return a * b; +}