for(int i=0; i<21; i++)
my_array[i] = 100; //value 100 means no value set in array
example;
all values in my_array are set to 60, but positions [2], [5] and [6] in the array are empty (have a value of 100), how do i organize the array so that the empty values are at (in this case) [18],[19],[20] and then move the positions with data down the necessary positions to fill the empty value positions?
That defeats the purpose of this thread. List is probably the best way to go however, but i would still like to know the methods for moving array values