C++程序  |  11行  |  89 B

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

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