diff --git a/src/c/funktionen.c b/src/c/funktionen.c index c59684e..1842d35 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -121,6 +121,10 @@ float volume(float a, float b, float c) { return a * b * c; } +float area(float a, float b) { + return a * b; +} + int stringCharacterCounter(char string[]) { int stringLength = 0;