Is it possible to have a variable number of string arrays?
psuedo-psuedo code example:
cout<<"Number of family members?"<< endl;
cin>> n;
n_1[5]= {whatever}
n_2[5]= {whatever}
n_3[5]= {whatever}
n_4[5]= {whatever}
n_5[5]= {whatever}
n_n[5]= {whatever}
Is that at all possible?