Update a1/program.c

This commit is contained in:
Viktor Daniv 2024-10-26 19:40:34 +00:00
parent 5f36ef27e6
commit 01b81fb504

View File

@ -45,7 +45,7 @@ void check_brackets(const char *code) {
// Skontroluj, či sú všetky zátvorky uzavreté // Skontroluj, či sú všetky zátvorky uzavreté
if (stack_top >= 0) { if (stack_top >= 0) {
printf("Missing closing bracket for %c\n", stack[stack_top]); printf("Missing closing bracket: %c\n", stack[stack_top]);
} else { } else {
printf("All brackets OK\n"); printf("All brackets OK\n");
} }