This commit is contained in:
Džubara 2024-10-31 23:25:21 +01:00
parent 9ef8765fcd
commit f325afdc34

View File

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