Not a problem as such but am i asking too much....heres the current situation:
I've got a multi -dimension array populated........
char buffer[5]; // holds name
char holdingArray[5][5] = //holds populating array , copies to buffer
{
"Jame",
"Anna",
"heya",
"rand"
};
ok as you can see the array cant be anymore than 4 letters in lenght. I've looked in dynamic memory allocation...I can do a dynamic array for a 'int' but not for a multi dimensional array, can anyone help us out here?
thanks