From 6d6022139d40b21706b01f38eda07901766bf13a Mon Sep 17 00:00:00 2001 From: daeun084 <030804jk@naver.com> Date: Thu, 4 Apr 2024 19:44:05 +0900 Subject: [PATCH] =?UTF-8?q?iOS=20=ED=99=94=EC=9D=B4=ED=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/calculator.c b/calculator.c index b173586..d2e6241 100644 --- a/calculator.c +++ b/calculator.c @@ -10,10 +10,11 @@ void sub(int a, int b) } void mul() { - printf("a *b = %d\n", a*b); + printf("a * b = %d\n", a * b); } void div() { + return 0; }