11 lines
206 B
C
11 lines
206 B
C
#include <unistd.h>
|
|
|
|
extern int add_three_integers(int a, int b, int c);
|
|
|
|
int main() {
|
|
add_three_integers(3, 5, 2); // should output 10
|
|
add_three_integers(-5, 3, 1); // should output -1
|
|
|
|
return 0;
|
|
}
|