How do I byteswap?This might help http://stackoverflow.com/questions/3916097/integer-byte-swapping-in-c
Still don't understand pointershttps://www.youtube.com/watch?v=6pmWojisM_E It is a silly video but it does cover the basics
Flat 3D arrayYou access any cell with the formula on line 13. Using your example ary[2][1][12] == ary[12*Heigh...
Flat 3D arrayI never liked pointers to pointers for arrays. You could flatten the entire array like this and then...
some array issues[code]cout << "This program outputs an array backwards." << endl;[/code] Isn't it supposed to?