0
char* vs std::string
May I have a comparison between the mentioned types in the title? When do you use each one? What's the difference? Etc...
1 Odpowiedź
+ 4
When working with strings in c++, I would usually stick to std::string wherever I can, unless it's necessary to use char* ( like when working with a C library or on very low end system )