Update a1/program.c

This commit is contained in:
Viktor Daniv 2024-10-26 19:45:15 +00:00
parent ea3282446c
commit d35690aa87

View File

@ -49,7 +49,7 @@ void check_brackets(const char *code) {
// Перевірка, чи всі дужки закриті // Перевірка, чи всі дужки закриті
if (stack_top >= 0) { if (stack_top >= 0) {
printf("Missing closing bracket: %c\n", expected); printf("Missing closing bracket: %c\n", expected_close);
} else { } else {
printf("All brackets OK\n"); printf("All brackets OK\n");
} }