This commit is contained in:
Nataliia Kobryn 2025-10-20 00:01:43 +02:00
parent 280dbede65
commit f9b28b0c4a
2 changed files with 1 additions and 1 deletions

BIN
a1/prog

Binary file not shown.

View File

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