Skip to content

Commit

Permalink
더하기 구현 완료 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdjww authored Apr 3, 2024
1 parent 584f49a commit 34bd190
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion calculator.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#include <stdio.h>

void add()
void add(int a, int b)
{
printf("a + b = %d\n", a + b);
}
void sub()
{
Expand Down

0 comments on commit 34bd190

Please sign in to comment.