C++程序  |  10行  |  101 B

struct S {
  void m(int x);

  S();
  S(const S&);

  operator const char*();
  operator char*();
};