I try to get this to work...
for(int i = 0; i < size; i++){
if(nameList[i] != NULL){
//save name
}
else
cout << "Namelist is full" << endl;
}
but NULL is not exepted in a situation like this...or...?
I want to put in the name in the first free space in the array.
Help please.