When I use :
    std::cout << "Hello world ";
Which type is "Hello world" ?
Where does it stored , so I can get it out and work with it ?
For some reasons, I don't want to use something like :
    std::string str = "Hello world"; 
    std::cout << str;
Please help me, I searched an hour but still no answer.
 
     
    