From 89b844b494f65081c50e510421f1bc43533880fd Mon Sep 17 00:00:00 2001 From: BAEK0111 Date: Wed, 3 Apr 2024 20:56:30 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EB=B9=BC=EA=B8=B0=20=EA=B8=B0=EB=8A=A5=20?= =?UTF-8?q?=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/calculator.c b/calculator.c index 176f397..2f80ad3 100644 --- a/calculator.c +++ b/calculator.c @@ -7,6 +7,7 @@ void add(int a, int b) void sub(int a, int b) { printf("a - b = %d\n", a - b); + printf(""); } void mul() {