Initialization#

This commit is contained in:
Kozar 2024-03-27 14:41:20 +01:00
parent f4b893568a
commit a7e68d397f

View File

@ -33,7 +33,7 @@ int main() {
// Check for division by zero // Check for division by zero
if (op == '/' && num2 == 0) { if (op == '/' && num2 == 0) {
printf("ZLE\n"); printf("ZLE\n");
return 1; return 0;
} }
// Perform the calculation // Perform the calculation