I have a program and I need to understand it, but I don't understand two lines of it. Okay so there is one-dimensional array - int [] names, and two chars - char let1, let2. Now, there is a command:
char let1 = names[i].charAt(names[i].length()-1);
char let2 = names[i+1].charAt(0);
What does that mean?
namesis actually anint[]. It looks pretty clear that it's aString[]. Now which specific bit of that code don't you understand?