We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Given a string, process each character at time.
std::string str = "Hello, world."; for (auto c : str) { // process c }
This solution uses C++11 auto and for each.