I want to store an 80x80 array where each array will have 3 integer values. Nay Idea on how to get this done?
I've been trying to no success
its 3d.
int thing[rows][cols][3];
you can enum the meaningful name:
enum {one, two, three};
thing[somerow][thiscolumn][three];
the enum values are off by one from their english name here, but its just a dumb example :)
Last edited on