0
foreach loop for c++
Is there a loop in C++ like foreach loop in C#?
1 ответ
+ 1
Yes, there is. Its called for_each().
www.cplusplus.com/reference/algorithm/for_each
The C++ one uses iterators and a function, but cannot accept the container the iterators point to, unlike the C# version.