Hi,
I need to store a list of names [surname, first, title].
What objects are best for saving this data ?
1. list per each component [array for surname, first, title ].
2. array of structures of Names [struct including surname, first, title]
3. STL way.
4. ELSE?

Thanks!