Files
2022-07-10 14:48:03 +08:00

6 lines
70 B
C

// add.c
int add (int first, int second)
{
return first + second;
}