From af3f5afd5489c228c7bf2ab19c340557f26762cf Mon Sep 17 00:00:00 2001 From: Yurii Chechur Date: Thu, 24 Oct 2024 20:26:12 +0000 Subject: [PATCH] Update a1/program.c --- a1/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a1/program.c b/a1/program.c index 06dafd1..eb4285f 100644 --- a/a1/program.c +++ b/a1/program.c @@ -38,7 +38,7 @@ int main() { } } else if (isClosing(current)) { if (top == -1) { - printf("Unexpected closing bracket %c in %d.\n", current, i); + printf("Unexpected closing bracket %c in %d\n", current, i); return 0; } if (!isMatching(stack[top], current)) {