SyntaxFix
Write A Post
Hire A Developer
Questions
C++ supplies a string class that can be used like this:
string
#include <string> #include <iostream> int main() { std::string Something = "Some text"; std::cout << Something << std::endl; }