lst-0828-book.cpp
// https://godbolt.org/z/jz1Gqo7d9
#include <iostream>
#include <vector>
#include <algorithm>
int main() {
std::vector<int> c{ 1,2,3,4 };
std::ranges::for_each(c, [](auto &n) { n*=n; }); // (ERR) modifizierend
std::cout << c[3] << '\n'; // Ausgabe: 16
}