Posts by Leonardo Lourenço • 46 points
2 posts
-
2
votes2
answers844
viewsA: Memory Position Array
I imagine all the images are the same size, so all you need to do is store them in a vector. Then when it comes to accessing you only need the initial address and the jump to do, so it would simply…
-
1
votes1
answer55
viewsA: Help with C code
As already said in other comments you are missing in the famous "off-by-one", IE, you are accessing a position outside of your array. When we declare arrays, what is placed between brackets is the…