Engineering/C/C++ 신기한 stl의 세계 by 알 수 없는 사용자 2008. 2. 11. #include <list> #include <iostream> #include <iterator> using namespace std; int main() { list<int> list1; list1.push_back(10); list1.push_back(3); list1.push_back(2); list1.push_back(1); ostream_iterator<int> out(cout, " "); copy(list1.begin(), list1.end(), out); cout << endl; return 0; } 공유하기 게시글 관리 Humaneer.net 관련글 STL관련 헤더파일 정리 Generic Count Algorithm Iterator Type [펌]C에서 쓰이는 문자열 관련 함수