class Print
{
public:
void PrintAll() {}
private:
std::list<int> mylist;
};
I see this example question from a C++ language book. And I want to print the internal mylist elements. How can it be done if mylist needs to be reversed, using C++ STL library and using to output the result.
Thanks you very much!
