HELP me CODE this..
How can i INPUT a NAME into an ARRAY BOX?
example i want to stock 5 names " UTOY" "MUTOY" "PrinceUTOY" "PapaMUTZ" "MUTZ" into an ARRAY?
what you are looking for is std::vector<string> . Here are some examples.
std::vector<string> v;
v.push_back("hello");
v.push_back("goodbye");
cout << v[0] << endl;
cout << v[1] << endl;
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.