From df759c0d4f0aeb86e97892dc980e3238644684db Mon Sep 17 00:00:00 2001 From: Anzhelika Nikolaieva Date: Tue, 10 Oct 2023 18:19:57 +0000 Subject: [PATCH] Update 'cv3/program.c' --- cv3/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv3/program.c b/cv3/program.c index 2c0c57d..5a8464a 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -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;