Hello,
I have a quick question: How do I declare array of strings with a static size entered by user during run time in C++?
In C# i'd do
// Get user unput (int, # of strings);
string[] stringArray = new string[numOfStrings];
//tell user to start imputing the string
But I'm lost with C++. Thank you for your help!!!