Quote Originally Posted by ozzy34
Thanks for the come back.

I could use an array but then I'm limiting the user to a max number of characters.

How can I catter for spaces and not run into this limitation?

Ta
getline is overloaded for the string class.
Code:
string name;
string address;
string account;

cout << "Input suppliers name: ";
getline(cin, name);
cout << "Input suppliers address: ";
getline(cin, address);
cout << "Input suppliers account name: ";
getline(cin, account);