17.11 — C-style string symbolic constants
In the previous lesson (), we discussed how to create and initialize C-style string objects: #include <iostream> int main() { char name[]{ “Alex” }; // C-style string std::cout << name << ‘\n’; return 0; } C++ supports two different ways to create C-style string symbolic constants: #include <iostream> int main() …