Whenever I try to do something like:
int something[];
it results in the error:
error: storage size of 'something' is unknown
So I'm forced to do something like
int something[100];
But I want that variable to be a dynamic array, like:(some pseudo-code)
int something;
something[2] = 1
something[101] = 5
something[3] = 4
I hope someone can help me with this :S