I am trying to achieve this... A single container which holds an array of structs and inside each of these structs are a single int array which represents an integer like so... 12,345 would be inside an int array[5]={1,2,3,4,5}
What is a way that this could be implemented. My main problem with this implementation is I get lost with all the pointers pointing everywhere and I start having garbage data all over and segfaults all over. Oh yeah by the way everything is dynamic. Well almost everything i guess if you have a struct Container which has a struct inside of that if the container is malloc'd then the struct inside of it is automatically malloc'd also so my guess would be
Container->struct.array
not sure????