+ 1
What is the data type for strings and why won't my. Code work
https://code.sololearn.com/c9BWLsjnsGbU/?ref=app https://code.sololearn.com/c9BWLsjnsGbU/?ref=app
2 Respuestas
+ 4
You could either use
1. std::string name.
or
2.
#include "string"
..
string name;
Here's a sample of the first
https://code.sololearn.com/cAMqb77Q87js/?ref=app
+ 2
thx