Daily bit(e) of C++ | Standard string literals
Daily bit(e) of C++ #165, C++14/C++20 support for standard string literals.
String literals in C++ are immutable character arrays (for compatibility with C).
This can be inconvenient when working with generic functions or when using auto.
Since C++14, the standard library provides support for standard string literals, that is, literals of type std::string and its variants.