6 lines
70 B
C
6 lines
70 B
C
// add.c
|
|
int add (int first, int second)
|
|
{
|
|
return first + second;
|
|
}
|