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

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

2023-07-01 11:58:00 -04:00
for (auto element: container)
{
std::cout << element << "\n";
}