BF-it
BF-it copied to clipboard
If array index is known then hardcode the offset
Lets say that you have int matrix[4][4]; and want to get matrix[1][1] which is item 6 then we can hardcode the ptr offset as >>>>>> and copy the value into the desired cell.
I know that this works for 1 dimensional array but that was before multidimensional arrays.
This might also work with setting an item.
Great idea !