std::copy()를 사용할 때 하기 쉬운 실수 #include #include using namespace std; int main() { string str="abcde", rev_str; copy(str.begin(), str.end(), rev_str.begin()); cout C++ 2022.09.20