exe2.c 101 B

123456
  1. extern int func(void);
  2. extern int lib1_func(void);
  3. int main(void)
  4. {
  5. return func() + lib1_func();
  6. }