C++程序  |  14行  |  95 B

#include <stdio.h>

void
bar (void)
{
  printf ("DSO bar\n");
}

void
foo (void)
{
  bar ();
}