C++程序  |  11行  |  101 B

extern void bar (void);
extern void foo (void);

int
main (void)
{
  foo ();
  bar ();
  return 0;
}