This commit is contained in:
Džubara 2024-10-31 23:52:28 +01:00
parent 9624010c7b
commit e361e20fcf

View File

@ -31,7 +31,7 @@ void check_brackets(const char *code) {
if (top == -1) { if (top == -1) {
printf("All brackets OK\n"); printf("All brackets OK\n");
} else { } else {
printf("Missing closing brackets: %c\n", stack[top]); printf("Missing closing brackets: %c\n", stack[top -1]);
} }
} }