Skip to content

Commit

Permalink
feat: 빼기 기능 구현 #3 (#27)
Browse files Browse the repository at this point in the history
* feat: 빼기 기능 구현

* 빼기 구현
  • Loading branch information
qzzloz authored Apr 3, 2024
1 parent 3c46087 commit 0914d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calculator.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ void add(int a, int b)
}
void sub(int a, int b)
{
printf("a - b = %d\n",a - b);
printf("a - b = %d\n", a - b);
}
void mul()
{
Expand Down

0 comments on commit 0914d2b

Please sign in to comment.