Hello I start studying c++ and I'm trying to learn what data type is something that starts with a L, like
auto something = L"Monday";
What data type is auto?
And how do I convert a std::string
to this data type?
std::string my_string = "Hello World";
to ? something = L"Hello World"