C++. For example the user enters the name Fionna Issac as one whole string. This string is then to be entered into the two dimensional array seats[2][4].
I don't know. What does the seats array represent? Check the articles database. there are a couple of articles and tutorials on multidimensional arrays. Do that or post an example of what you are trying to do and show us how the seats array is declared.
In C++ you use getline(cin, array_name). The array usually looks like: string first_last_names[81];
But I wonder why you want to use a two dimensional array.
Your names will still be separated by a space character in a one dimensional array and so just as easily read.