Update a1/program.c

This commit is contained in:
Marat Izmailov 2024-10-24 12:14:43 +00:00
parent e118e96953
commit 38d1dec73e

View File

@ -60,6 +60,7 @@ int main() {
indexStack[++indexTop] = i; // Сохраняем индекс открывающей скобки
} else if (c == ')' || c == '}' || c == ']' || c == '>') {
if (top == -1) {
// Закрывающая скобка без соответствующей открывающей
printf("Unexpected closing bracket %c in %d\n", c, i);
return 1; // Возвращаем 1 при ошибке
}