Update cv3/program.c

This commit is contained in:
Viktor Daniv 2024-10-07 12:40:53 +00:00
parent 6dce319833
commit 3f3d7ccb34

View File

@ -61,7 +61,7 @@ int perform_operation(Calculator *calc, char op) {
break;
case '/':
if (b == 0) {
printf("division by zero\n");
printf("division by zero");
bub = 1;
break;
}