You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
211 B

#include <stdio.h>
extern int add1(int, int);
extern int add2(int, int, int);
int main(void)
{
int x, y;
x = add1(40, 2);
y = add2(100, -5, -20);
printf("got: %d %d\n", x, y);
return 0;
}