8 lines
86 B
C
8 lines
86 B
C
int add(int a, int b) {
|
|
return a + b;
|
|
}
|
|
|
|
int main(void) {
|
|
return add(1, 2);
|
|
}
|