If I have an array of fixed size of say
const int max_size = 200;
and I want to remove one of the elements, how would I do so?
I know normally you would move the undesired value to the last element of the array then decrement the size of the array, but I don't think I can do that in this case?