@ -1 +1,8 @@
#include "division.h"
float divide(float dividend, float divisor) {
if (divisor == 0) {
return 0; // Fehlerbehandlung: Division durch Null ist nicht definiert, daher geben wir einfach 0 zurück.
}
return dividend / divisor;