Hi all. Im trying to take inputs of a user and enter them into a char array in a loop. for(count=1; count<=amount;count++) { cout<<"\n enter string.. \n"; cin.getline(user_input,100); } then I want to increment the array by 1 so that the user can input another string which can be stored in the next position of the array. my problem is doing ...