Trying to get cin to input to the array, I have the correct header for it but whenever I run the cin part it just skips it and does nothing, I want it to be able to cin a line of text with the spaces.
char a[2000];
cin.getline(a, 2000);
questionsArray[y] = a;
edit: this is within a switch statement although can't see how it would affect it?
Generally speaking,
std::getline
is the better choice, as it works onstd::string
directly: