// I have to declare 50 arrays to declare that range from 1 to 50 with the following syntax:
la_Array_1;
la_Array_2;
la_Array_3;
la_Array_50;
// Then based on a value of the an integer value called li_Choose_Array I want to access that specific array.
// For example if li_Choose_Array is equal to 17 then I want access la_Array_17.
// My questions are, how would I declare the 50 arrays dynamically so that I do not have to manually enter each declaration.
// And secondly, how would I access the la_Array_17 when my li_Choose_Array value is equal to 17?
TIA
ints to store instead of declaring 50 variables you'd use an array of length 50, right? Well, it's the same thing whether it's 50ints or 50int[]s: use an array, which is what @MarcGravell's answer does. As for the "array pointer" you mention in the title, that's essentially what jagged arrays are.