This commit is contained in:
Džubara 2024-10-31 23:57:00 +01:00
parent e361e20fcf
commit 9d79f9d77b

View File

@ -31,7 +31,11 @@ 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 -1]); printf("Missing closing brackets: ");
while (top >= 0) {
printf("%c", stack[top--]);
}
printf("\n");
} }
} }