User profile: mobotus

User info
User name:mobotus
History
Joined:
Number of posts:275
Latest posts:

How do I byteswap?
This might help http://stackoverflow.com/questions/3916097/integer-byte-swapping-in-c

Still don't understand pointers
https://www.youtube.com/watch?v=6pmWojisM_E It is a silly video but it does cover the basics

Flat 3D array
You access any cell with the formula on line 13. Using your example ary[2][1][12] == ary[12*Heigh...

Flat 3D array
I 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?