What are the ending contents of the array? Choices show elem…
What are the ending contents of the array? Choices show elements in index order 0, 1, 2.int yearsList[3];yearsList[0] = 5;yearsList[1] = yearsList[0];yearsList[0] = 10;yearsList[2] = yearsList[1];
Read Details