not necessarily(sp? though word to write). If you know how much objects you're going to need, you can do it like this
Code:
CString zin[3]={CString("persoon 1"),CString("persoon 2"),
CString("persoon 3")};
I know, it is dutch, but I hope you get the point.
if you don't know how much objects you'll need, you'll have to use a pointer
Code:
CString *multiple;
multiple=new CString[5];
delete []multiple;
CString is just a class I used as an example