printfを使う

Cの標準ライブラリはnamespace stdに定義されてるのかなぁ?

#include <cstdio>

int main() {
  printf("Hello, C++\n");
  std::printf("Hello, C++\n");
}