RosettaCodeData/Task/Loops-Foreach/C++/loops-foreach-4.cpp

5 lines
66 B
C++
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
for (auto element: container)
{
std::cout << element << "\n";
}