C++程序  |  7行  |  102 B

extern int printf(const char *, ...);

void foo(void)
{
  printf("Hello from %s!\n", __FUNCTION__);
}