回答編集履歴

1

微修正

2017/01/10 14:17

投稿

Chironian
Chironian

スコア23272

test CHANGED
@@ -6,4 +6,4 @@
6
6
 
7
7
  C言語の文字列(char*)へ変換して渡す必要があります。
8
8
 
9
- c_str()メンバ関数で変換できますので、`puts(str.c_str());`で行けると思います。
9
+ std::stringクラスが持つc_str()メンバ関数で変換できますので、`puts(str.c_str());`で行けると思います。