This commit is contained in:
Your Name 2025-10-19 21:49:51 +02:00
parent 128593cbd0
commit 9abf1e9c6d

View File

@ -241,7 +241,7 @@ int main()
if (stack->arr_pos>=0)
{
printf("Missing closing brackets: ");
for (size_t i = 0; i < stack->arr_pos+1; i++)
for (int i = stack->arr_pos; i != -1; i--)
{
printf("%c", closed_for_opened(stack->brackets[i]));
}