string class 🔵copy size_type copy(value_type* _Ptr, size_type _Count, size_type _Off = 0) const; std::string str; char *cstr; str.copy(cstr , 3, 5); str 문자열을 5위치에서부터 3개의 문자열을 cstr로 복사해온다. std::string str; str = "hello" char cstr[128] = "123456789"; str.copy(str, 4, 0); std::cout