std::string s("Hello world"); for (char & c : s) { std::cout << "One character: " << c << " "; c = '*'; }