Lambda - распечатанный массив и добавьте комментарий
#include <functional>
#include <array>
#include <iostream>
#include <string_view>
std::array<int, 10> s = {5, 7, 4, 2, 8, 6, 1, 9, 0, 3};
auto print = [&s](std::string_view const rem) {
for (auto a : s) {
std::cout << a << ' ';
}
std::cout << ": " << rem << '\n';
};
print("Hello");
Wandering Wildebeest