This commit is contained in:
mr314ot 2025-10-16 13:01:34 +02:00
parent 2354cc5688
commit 4038f48262

View File

@ -86,7 +86,7 @@ int main(void) {
case '/':
if (b == 0) {
printf("division by zero\n");
return 1;
return 0;
}
result = a / b; break;
default: