11 lines
No EOL
142 B
C
11 lines
No EOL
142 B
C
// test-function-call.c
|
|
int add(int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
|
|
int main(int argc, int argv)
|
|
{
|
|
int result = add(5, 3);
|
|
return result;
|
|
} |