Are multidimensional arrays better than an array of structures if there's only one datatype? For example would an array of:
struct data{
short datapointa;
short datapointb;
short datapointc;
}
be better than
short data[100][100][100][100];
What if there are several datatypes, would several arrays be better than an array of struct?