C++ examples for STL:string
Range-Based for with Constant Access on string value
#include <iostream> #include <string> using namespace std; int main(int argc, char *argv []) { //from w w w.j a va2 s. co m string myString{ "This is my string!" }; for (const char &letter : myString) { cout << letter << endl; } return 0; }