I would like to know if, given the declarations below:
int first[1][COLUMN_NUMBER];
int second[COLUMN_NUMBER];
the two bi-dimensional arrays could be accessed in the same or in a similar way. What I mean is: are they exchangeable? I am asking this because, due to an upgrade, I would like to avoid the refactoring of all the code I have written before.
Thanks a lot.