以下のようなコードを記述しました。
cpp
1#include <iostream> 2#include <vector> 3#include <array> 4#include <algorithm> 5#include <fstream> 6#include <sstream> 7#include <string> 8 9int main() { 10 using namespace std; 11 stringstream ss; 12 ss << "hello," << "\n" << "world"; 13 std::array<char, 100> arr{}; 14 ss.get(arr.data(), arr.size()); 15 cout << arr.data() << endl; 16}
hello, world
のように表示されるかと考えていたのですが、hello,のみしか表示されませんでした。
https://wandbox.org/permlink/CfnplfpUjXGYjr8s
改行コードを含めたい場合、どのように記述するべきなのでしょうか。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/18 00:15