maincxx.c 87 B

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