This commit is contained in:
Nataliia Kobryn 2025-10-20 18:58:21 +02:00
parent 61a6c1580d
commit 8d9bc08d2f
2 changed files with 1 additions and 1 deletions

BIN
a1/prog

Binary file not shown.

View File

@ -83,7 +83,7 @@ int main() {
if (top <-1) {
printf("Unexpected closing bracket %c in %d\n", c, err-1);
} else {
printf("Crossed bracket %c in %d, expected %c\n", c, err-1, getExpectedClosing(stack[err-2]));
printf("Crossed bracket %c in %d, expected %c \n", c, err-1, getExpectedClosing(stack[err-2]));
}
} else {
printf("Missing closing brackets: ");