0
String c++
How do you create a string in c++
3 Answers
+ 2
Just declare a variable with keyword string infront!
+ 1
make sure to include the string header and if not using STDs named space
#include<string>
std::string="Hello World";
0
what lesson in c++ is the string gone over?