C++程序  |  8行  |  103 B

#include <stdio.h>

#include <string>

void foo(const std::string& s) {
  printf("%s\n", s.c_str());
}