Update 'cv3/program.c'

This commit is contained in:
Anzhelika Nikolaieva 2023-10-10 18:19:57 +00:00
parent b91eef8dd8
commit df759c0d4f

View File

@ -50,7 +50,7 @@ int operation_insert_result(struct stack_glavny* stack, char operation) {
break;
case '/':
if (operand2 == 0) {
//printf("division by zero\n");
printf("division by zero\n");
return false;
}
result = operand1 / operand2;