I have a malloc'ed 3d array of doubles in C that is generating a Data Access Violation error when accessed via indexes.
The allocation function: (Simplified version not checking for nulls or freeing if errors)
#define DIMENSIONA 50
#define DIMENSIONB 30
#define DIMENSIONC 2
double *** Array;
void InitialiseDataStructure(void)
{
int Counter = 0;
int PointCounter = 0;
Array = (double ***)malloc(DIMENSIONA * (sizeof(double**)));
for (Counter = 0; Counter < DIMENSIONA; Counter++)
{
Array[Counter] = (double **)malloc(DIMENSIONB * sizeof(double *));
for (PointCounter = 0; PointCounter < DIMENSIONB; PointCounter++)
{
Array[Counter][PointCounter] = (double *)malloc(DIMENSIONC * sizeof(double));
}
}
}
The array is then accessed like this:
Array[x][y][z] = 0;
This generates a data access violation error and terminates the program.
I have read and tried and come to the conclusion - I am dumb. Please help!!!
double ***too? Is it accessed anywhere that might expectdouble Array[50][30][2]instead ofdouble ***Array? – Dmitri Jan 11 at 6:13