This commit is contained in:
Deinerovych 2024-10-16 11:59:18 +02:00
parent 9bf18a7adf
commit b476296374

View File

@ -32,8 +32,8 @@ float calculator(float n1, float n2, char operation) {
if (n2 != 0) {
return n1 / n2;
} else {
printf("Error: division by zero\n");
return 0;
printf("division by zero\n");
exit(1);
}
}
return 0;