char* vs std::string | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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...

18th Aug 2021, 8:52 AM
Yahel
Yahel - avatar
1 Antwort
+ 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 )
18th Aug 2021, 9:01 AM
Arsenic
Arsenic - avatar