I figured this would be easy but ultimately I can't seem to get past the " " in a char array.
i.e.
const int ARRAY_SIZE = 80;
char charArray[ARRAY_SIZE];
cout << "input a sentence";
cin >> charArray;
"This is a test string" returns only "This" as the space becomes a null terminator in the array. I know I can use the string library but that isn't what I'm trying to accomplish.