I want to be able to have an empty array when the program starts, fill it up during runtime, and also remove things inside of it. This would probably have to be a multidimentional array. So, how would I do this?
Ex.
int randomNumber;
int RandomString;
int array[] = {};
for(int i;int i < 10; int i ++){
array + random variable;
array + random string;
}
So, after it would look like:
array[] = {{randomint,randomstring},{randomint, rrandomstring}}
Is this possible?