Am working on a big project and am at a particular point within it that requires me to do a couple of things with an array:
Array size [1048]
1)How would I break up an array into 10 sections and further divide those sections into 100 spaces u know like:
0-99, 100-199, 200-299.... 900-999
2) create a queue to keep track of the 10 available sections
3) when you allocate one[space] take it off the queue
4) and return that base memory space... 0, 100, 200
Thanks