From 7bc1e181306c0700762f1308314b25da0e753afa Mon Sep 17 00:00:00 2001 From: GoldSy3 <109666257+GoldSy3@users.noreply.github.com> Date: Mon, 12 Sep 2022 17:31:07 +0300 Subject: [PATCH] Update 1.c To call the function on line 67, you would have to add () next to the function's name. --- 10/projects/01/1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10/projects/01/1.c b/10/projects/01/1.c index ad1d6c5..b5b9a56 100644 --- a/10/projects/01/1.c +++ b/10/projects/01/1.c @@ -34,7 +34,7 @@ int main(void) { push(c); } - if (!is_empty) { + if (!is_empty()) { printf("Parentheses/braces are not nested properly\n"); return 0; }