i want to get an array of characters (string) into another array. using C++. how can i do this?
here's the code i have.

Code:
void newperson ()
{
	int count, numppl;
	cout<<"How many people do you want to introduce?"<<endl;
	cin>>numppl;
	for (count=0 ; count <=numppl ; count=count +1)
	{
		cin.getline (agendaarray[20], 256);
	}
	
}
thx