***すれ立てるまでもない質問はここで 第49刷***

このエントリーをはてなブックマークに追加
587デフォルトの名無しさん
>>585
string str = "0123456789";
str = string("012") + '\0' + "34";
cout << strlen(str.c_str()) << endl;
cout << str.size() << endl;
cout << str.length() << endl;
cout << str.capacity() << endl;