C++程序  |  11行  |  105 B

#include <stdio.h>

extern int show_foo ();

int
main ()
{
  printf ("%d\n", show_foo ());
  return 0;
}