Range-Based for loop on string value - C++ STL

C++ examples for STL:string

Description

Range-Based for loop on string value

Demo Code

#include <iostream> 
#include <string> 

using namespace std; 

int main(int argc, char *argv [])
{   //from ww w.  j  a va 2 s .  c  o  m
        string myString{ "This is my string!" }; 

        for (char &letter : myString) 
        { 
                cout << letter << endl; 
        } 
        return 0; 
}

Result


Related Tutorials