#include #include int main() { std::string const s { "hello, world!" }; for (auto const value: s) std::cout << value << ' '; }