struct ch8_struct {
int field1;
short field2;
char field3;
int field4;
double field5;
};
struct ch8_struct g_StructArray[3];
ch8_struct *g_pStructArray = g_StructArray;
ch8_struct **g_ppStructArray = &g_pStructArray;
g_ppStructArray[1]->field1 = 11;
program is crashing on g_ppStructArray[1]->field1 = 11; i think my pointer notation is wrong :)